ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#211250 | #2398. 游戏 | 18915523188 | 20 | 152ms | 196648kb | C++ | 2.0kb | 2024-08-10 09:35:11 | 2024-08-10 12:35:10 |
answer
#include <bits/stdc++.h>
#define ll long long
#pragma GCC optimeze(2)
using namespace std;
ll ch,s,l,r,n,m,ans,a[1000006];
struct T{
ll l,r,num=0,tag=0,tagl=-1;
}tr[5000005];
ll build(ll le,ll ri,ll c){
if(ri-le<0) return 0;
if(ri-le==0){
tr[c].num=a[ri];
tr[c].l=le;
tr[c].r=ri;
return tr[c].num;
}
tr[c].l=le;
tr[c].r=ri;
ll mid=(le+ri)/2;
tr[c].num+=build(le,mid,2*c);
tr[c].num+=build(mid+1,ri,2*c+1);
return tr[c].num;
}
void down(ll c){
tr[c].num+=tr[c].r-tr[c].l+1*tr[c].tag*(tr[c].l+tr[c].r-2*tr[c].tagl+2)*s*(tr[c].r-tr[c].l+1)/2;
tr[2*c].tag+=tr[c].tag;
tr[2*c+1].tag+=tr[c].tag;
tr[2*c].tagl=tr[c].tagl;
tr[2*c+1].tagl=tr[c].tagl;
tr[c].tag=0;
tr[c].tagl=-1;
return;
}
void add(ll sle,ll le,ll ri,ll k,ll c){
down(c);
if(tr[c].r<le||tr[c].l>ri) return;
if(tr[c].l>=le&&tr[c].r<=ri){
tr[c].tag=(tr[c].tag+k);
tr[c].tagl=sle;
down(c);
return;
}tr[c].num+=(min(ri,tr[c].r)-max(le,tr[c].l)+1)*k;
long long mid=(le+ri)/2;
add(sle,le,ri,k,2*c+1);
add(sle,le,ri,k,2*c);
return;
}
ll find(ll le,ll ri,ll c){
down(c);
ll ans=0;
if(tr[c].l>=le&&tr[c].r<=ri){
return tr[c].num;
}if(tr[c].r<le||tr[c].l>ri) return 0;
ll mid=(le+ri)/2;
ans+=find(le,ri,2*c+1);
ans+=find(le,ri,2*c);
return ans;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin>>n>>m;
if(n<=10000&&m<=10000){
while(m--){
cin>>ch;
if(ch==1){
cin>>s>>l>>r;
for(int i=l;i<=r;i++){
a[i]+=s*(i-l+1);
}
}else{
cin>>l>>r;
ans=0;
for(int i=l;i<=r;i++){
ans+=a[i];
}
cout<<ans<<endl;
}
}
return 0;
}
build(1,n,1);
while(m--){
for(ll i=1;i<=2*n;i<<=1){
for(ll j=0;j<i;j++){
cout<<tr[i+j].num<<" "<<tr[i+j].l<<" "<<tr[i+j].r<<" "<<tr[i+j].tag<<" ";
}
cout<<endl;
}
cin>>ch;
if(ch==1){
cin>>s>>l>>r;
add(l,l,r,s,(ll)1);
}else{
cin>>l>>r;
cout<<find(l,r,(ll)1)<<endl;
}
}
cout<<ans;
return 0;
}
详细
小提示:点击横条可展开更详细的信息
Test #1:
score: 10
Accepted
time: 73ms
memory: 196644kb
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 -110345895 -118168581 -43417983 -4860827434 -604843653 -2613457133 -534205626 -89290630 484290874 ...
result:
ok 5015 lines
Test #2:
score: 10
Accepted
time: 79ms
memory: 196648kb
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:
243137972 7529843014 0 11315350608 10741570136 -23729193 8497340876 11134190564 4752384896 166579811...
result:
ok 5048 lines
Test #3:
score: 0
Time Limit Exceeded
input:
666666 10000 1 92 555251 586462 1 393 28541 523118 1 448 17256 369367 1 -28 89257 596132 1 -338 3136...
output:
0 1 666666 0 0 1 333333 0 0 333334 666666 0 0 1 166667 0 0 166668 333333 0 0 333334 500000 0 0 500...
result:
Test #4:
score: 0
Time Limit Exceeded
input:
666666 50000 1 -249 309981 333889 1 477 309512 463171 1 0 71655 592642 1 45 191249 527454 1 55 38872...
output:
0 1 666666 0 0 1 333333 0 0 333334 666666 0 0 1 166667 0 0 166668 333333 0 0 333334 500000 0 0 500...
result:
Test #5:
score: 0
Time Limit Exceeded
input:
666666 100000 1 -183 598736 630118 1 -337 605875 639236 1 -62 265069 340682 1 -96 370300 571646 1 -1...
output:
0 1 666666 0 0 1 333333 0 0 333334 666666 0 0 1 166667 0 0 166668 333333 0 0 333334 500000 0 0 500...
result:
Test #6:
score: 0
Time Limit Exceeded
input:
666666 100000 2 121929 379928 2 34550 66844 1 96 338911 637923 2 161666 370147 1 -282 313713 463127 ...
output:
0 1 666666 0 0 1 333333 0 0 333334 666666 0 0 1 166667 0 0 166668 333333 0 0 333334 500000 0 0 500...
result:
Test #7:
score: 0
Time Limit Exceeded
input:
750000 100000 1 -318 454211 721481 2 239247 294171 2 52513 339575 2 424462 638364 2 683282 740790 1 ...
output:
0 1 750000 0 0 1 375000 0 0 375001 750000 0 0 1 187500 0 0 187501 375000 0 0 375001 562500 0 0 562...
result:
Test #8:
score: 0
Time Limit Exceeded
input:
1000000 100000 1 -108 318728 708230 1 -242 8738 411540 1 -119 458000 972357 2 368015 850304 1 -182 1...
output:
0 1 1000000 0 0 1 500000 0 0 500001 1000000 0 0 1 250000 0 0 250001 500000 0 0 500001 750000 0 0 7...
result:
Test #9:
score: 0
Time Limit Exceeded
input:
1000000 100000 2 347033 984386 2 277881 323793 1 431 735974 973576 2 782909 863840 1 -22 379088 6406...
output:
0 1 1000000 0 0 1 500000 0 0 500001 1000000 0 0 1 250000 0 0 250001 500000 0 0 500001 750000 0 0 7...
result:
Test #10:
score: 0
Time Limit Exceeded
input:
1000000 100000 1 -238 406279 814973 1 -425 637451 721356 1 237 340114 658854 2 279214 591961 2 17862...
output:
0 1 1000000 0 0 1 500000 0 0 500001 1000000 0 0 1 250000 0 0 250001 500000 0 0 500001 750000 0 0 7...