UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#211253#2398. 游戏Larryia046ms5236kbC++111.9kb2024-08-10 09:53:402024-08-10 12:35:52

answer

#include <bits/stdc++.h>
#define lc (u << 1)
#define rc (u << 1 | 1)
using namespace std;
const int N = 1e6 + 10;
typedef long long ll;
int n, m;
struct tree {
    int l, r;
    ll sum;
    ll k;
    ll s;
}tr[N << 2];
void pushup(int u) { //y
    tr[u].sum = tr[lc].sum + tr[rc].sum;
}
void build(int u, int l, int r) { //y
    tr[u] = {l, r, 0, 0, 0};
    if (l == r) return;
    int mid = (l + r) >> 1;
    build(lc, l, mid);
    build(rc, mid + 1, r);
}
void cal(int u, int k, int s) { //y
    int l = tr[u].l, r = tr[u].r;
    tr[u].sum += (2*k+r-l)*(r-l+1)/2*s;
}
void pushdown(int u) { //y
    cal(lc, tr[u].k, tr[u].s);
    cal(rc, tr[u].k + tr[rc].l - tr[u].l, tr[u].s);
    tr[lc].k = tr[u].k;
    tr[lc].s = tr[u].s;
    tr[rc].k = tr[u].k + tr[rc].l - tr[u].l;
    tr[rc].s = tr[u].s;
    tr[u].s = tr[u].k = 0;
}
void change(int u, int l, int r, int k, int s) { // 任务l的位置的s权值为k
    if (l > tr[u].r || r < tr[u].l) return;
    if (l <= tr[u].l && tr[u].r <= r) {
        pushdown(lc), pushdown(rc);
        pushdown(u);
        cal(u, k + tr[u].l - l, s);
        tr[u].k = k + tr[u].l - l;
        tr[u].s = s;
        return;
    }
    pushdown(u);
    change(lc, l, r, k, s);
    change(rc, l, r, k, s);
    pushup(u);
}
ll query(int u, int l, int r) {
    if (l > tr[u].r || r < tr[u].l) return 0;
    if (l <= tr[u].l && tr[u].r <= r) {
        return tr[u].sum;
    }
    pushdown(u);
    return query(lc, l, r) + query(rc, l, r);
}
int main() {
    scanf("%d%d", &n, &m);
    build(1, 1, n);
    while (m--) {
        int op;
        scanf("%d", &op);
        if (op == 1) {
            int s, l, r;
            scanf("%d%d%d", &s, &l, &r);
            change(1, l, r, 1, s);
        } else {
            int l, r;
            scanf("%d%d", &l, &r);
            printf("%lld\n", query(1, l, r));
        }
    }
    return 0;
}

详细

小提示:点击横条可展开更详细的信息

Test #1:

score: 0
Wrong Answer
time: 22ms
memory: 5228kb

input:

10000 10000
2 7160 9968
1 -473 6964 8476
1 -153 5216 7023
2 6352 6868
1 -323 2338 2855
1 415 8414 88...

output:

0
0
-56308998
-43417983
-3955207605
-107309361
-105443832
-75529836
0
-1914334582
-542694403
2506657...

result:

wrong answer 2nd lines differ - expected: '-110345895', found: '0'

Test #2:

score: 0
Wrong Answer
time: 24ms
memory: 5236kb

input:

10000 10000
1 326 2291 8264
2 2344 3512
1 146 4506 4804
1 342 1373 4495
1 -267 929 3525
1 444 3384 8...

output:

6738420
1161854196
0
1833171652
-176234690
-12835789
-627553775
1925493878
-1005384990
1699561764
86...

result:

wrong answer 1st lines differ - expected: '243137972', found: '6738420'

Test #3:

score: 0
Runtime Error

input:

666666 10000
1 92 555251 586462
1 393 28541 523118
1 448 17256 369367
1 -28 89257 596132
1 -338 3136...

output:


result:


Test #4:

score: 0
Runtime Error

input:

666666 50000
1 -249 309981 333889
1 477 309512 463171
1 0 71655 592642
1 45 191249 527454
1 55 38872...

output:


result:


Test #5:

score: 0
Runtime Error

input:

666666 100000
1 -183 598736 630118
1 -337 605875 639236
1 -62 265069 340682
1 -96 370300 571646
1 -1...

output:


result:


Test #6:

score: 0
Runtime Error

input:

666666 100000
2 121929 379928
2 34550 66844
1 96 338911 637923
2 161666 370147
1 -282 313713 463127
...

output:


result:


Test #7:

score: 0
Runtime Error

input:

750000 100000
1 -318 454211 721481
2 239247 294171
2 52513 339575
2 424462 638364
2 683282 740790
1 ...

output:


result:


Test #8:

score: 0
Runtime Error

input:

1000000 100000
1 -108 318728 708230
1 -242 8738 411540
1 -119 458000 972357
2 368015 850304
1 -182 1...

output:


result:


Test #9:

score: 0
Runtime Error

input:

1000000 100000
2 347033 984386
2 277881 323793
1 431 735974 973576
2 782909 863840
1 -22 379088 6406...

output:


result:


Test #10:

score: 0
Runtime Error

input:

1000000 100000
1 -238 406279 814973
1 -425 637451 721356
1 237 340114 658854
2 279214 591961
2 17862...

output:


result: