UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#211259#2398. 游戏fx_happy01357ms32508kbC++111.3kb2024-08-10 10:20:302024-08-10 12:36:36

answer

#include<bits/stdc++.h>
#define ll long long 
using namespace std;
const int MAXSIZE=1e6+10;

int  n,m;
ll a[MAXSIZE],b[MAXSIZE],c[MAXSIZE],d[MAXSIZE];

int lowbit(int x){ return x&(-x); }
void add1(int x,ll v){ while(x<=n){ a[x]+=v; x+=lowbit(x); } }
void add2(int x,int pos,ll v){ while(x<=n){ b[x]+=1ll*v*(pos+1)*pos; x+=lowbit(x); } }
void add3(int x,int pos,ll v){ while(x<=n){ c[x]+=1ll*v*pos; x+=lowbit(x); } }
void add4(int x,int pos,ll v){ while(x<=n){ d[x]+=1ll*v*pos*pos; x+=lowbit(x); } }
ll qry(ll* t,int x){ ll res=0; while(x){ res+=t[x]; x-=lowbit(x);} return res; }
ll sum(int x) {return(1ll*x*(x+1)/2*qry(a,x)-qry(b,x)/2-1ll*(x+1)*qry(c,x)+qry(d,x));}

int main()
{
    std::ios::sync_with_stdio(false);
    cin.tie(0), cout.tie(0);
    cin>>n>>m;
    while(m--)
    {
        int op;
        cin>>op;
        if(op==1)
        {
            ll s,val; int l,r;
            cin>>s>>l>>r;
            val=-1ll*(r-l+2)*s;
            add1(l,s),add1(r+1,val);
            add2(l,l,s),add2(r+1,r+1,val);
            add3(l,l,s),add3(r+1,r+1,val);
            add4(l,l,s),add4(r+1,r+1,val);
        }
        else
        {
            int l,r;
            cin>>l>>r;
            cout<<sum(r)-sum(l)<<endl;
        }
    }
    return 0;
}

详细

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

Test #1:

score: 0
Wrong Answer
time: 13ms
memory: 1584kb

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
-110092986
936284694267
214578448203
16448061061260
883643787640
6341063886979
5289714359850
-8886...

result:

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

Test #2:

score: 0
Wrong Answer
time: 13ms
memory: 1588kb

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:

242739600
-2295649395486
-8963152902116
-2725593814242
-7260175775141
-24412071
431665099978
-136138...

result:

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

Test #3:

score: 0
Wrong Answer
time: 18ms
memory: 22104kb

input:

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

output:

3929639821298956002
2504047386029999636
-447264251195002932
-240983282361349887
-2282542307642957755...

result:

wrong answer 1st lines differ - expected: '-414130189712976', found: '3929639821298956002'

Test #4:

score: 0
Wrong Answer
time: 97ms
memory: 22108kb

input:

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

output:

9159336611439826538
8641667824701391695
1571540256705116901
-1282476830380162382
10636835191299942
-...

result:

wrong answer 1st lines differ - expected: '120968444808072', found: '9159336611439826538'

Test #5:

score: 0
Wrong Answer
time: 217ms
memory: 22108kb

input:

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

output:

5701197577848647597
4128711441294670366
5704140603636783198
2328249505995354469
1957941965350914563
...

result:

wrong answer 1st lines differ - expected: '-250805903081209', found: '5701197577848647597'

Test #6:

score: 0
Wrong Answer
time: 212ms
memory: 22104kb

input:

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

output:

0
0
46801973280
-2144481392202
12890007390
-1096072737111485774
28047608589140922
858724188673258
-5...

result:

wrong answer 3rd lines differ - expected: '46837507488', found: '46801973280'

Test #7:

score: 0
Wrong Answer
time: 173ms
memory: 24712kb

input:

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

output:

0
0
-5391944899260
15777337945044012
-100690569880873917
-3048946813339323285
-2209876888452964389
-...

result:

wrong answer 3rd lines differ - expected: '-5392147899330', found: '-5391944899260'

Test #8:

score: 0
Wrong Answer
time: 214ms
memory: 32504kb

input:

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

output:

-8639389705319573436
-20910334133372
-3732967721384
-3970471527534066464
8836023190542636398
-395920...

result:

wrong answer 1st lines differ - expected: '-21232196185685', found: '-8639389705319573436'

Test #9:

score: 0
Wrong Answer
time: 215ms
memory: 32504kb

input:

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

output:

0
0
3048657092661
-275347002546
58188288175464720
1447126754969675662
9216488566329634110
1117048990...

result:

wrong answer 3rd lines differ - expected: '3048712203338', found: '3048657092661'

Test #10:

score: 0
Wrong Answer
time: 185ms
memory: 32508kb

input:

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

output:

3413254027306
4250025435763
3270374736939
8417366317093439220
0
-28213654483965857
65759556741905023...

result:

wrong answer 1st lines differ - expected: '3413253435344', found: '3413254027306'