ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#211248 | #2398. 游戏 | mygr | 0 | 1559ms | 66752kb | C++ | 2.2kb | 2024-08-10 09:21:44 | 2024-08-10 12:35:04 |
answer
#include<bits/stdc++.h>
#define int long long
#define pii pair<int,int>
using namespace std;
const int Max=1e6+5;
int n,m;
struct Tree{
public:
struct node{
int sum,lazy,sm,mls;
}p[Max*4];
void pushup(int now)
{
p[now].sum=p[now<<1].sum+p[now<<1|1].sum;
p[now].mls=p[now<<1].mls+p[now<<1|1].mls;
}
void pushdown(int now,int l,int r)
{
if(p[now].lazy)
{
int mid=(l+r)>>1;
p[now<<1].sum=(p[now<<1].sum+p[now].lazy*(mid-l+1));
p[now<<1].mls=(p[now<<1].mls+p[now].lazy*p[now<<1].sm);
p[now<<1].lazy+=p[now].lazy;
p[now<<1|1].sum=(p[now<<1|1].sum+p[now].lazy*(r-mid));
p[now<<1|1].mls=(p[now<<1|1].mls+p[now].lazy*p[now<<1|1].sm);
p[now<<1|1].lazy+=p[now].lazy;
p[now].lazy=0;
}
}
void build(int now,int l,int r)
{
if(l==r)
{
p[now].sm=n-l+1;
return ;
}
int mid=(l+r)>>1;
build(now<<1,l,mid);
build(now<<1|1,mid+1,r);
p[now].sm=p[now<<1].sm+p[now<<1|1].sm;
}
void update(int now,int l,int r,int nl,int nr,int num)
{
if(l<=nl and nr<=r)
{
p[now].lazy+=num;
p[now].sum+=num*(nr-nl+1);
p[now].mls=(p[now].mls+p[now].sm*num);
return ;
}
int mid=(nl+nr)>>1;
pushdown(now,nl,nr);
if(l<=mid)
update(now<<1,l,r,nl,mid,num);
if(mid<r)
update(now<<1|1,l,r,mid+1,nr,num);
pushup(now);
return ;
}
pii query(int now,int l,int r,int nl,int nr)
{
if(l<=nl and nr<=r)
return make_pair(p[now].sum,p[now].mls);
int mid=(nl+nr)>>1;
pii ans,in;
pushdown(now,nl,nr);
if(l<=mid)
{
in=query(now<<1,l,r,nl,mid);
ans.first+=in.first;
ans.second+=in.second;
}
if(mid<r)
{
in=query(now<<1|1,l,r,mid+1,nr);
ans.first+=in.first;
ans.second+=in.second;
}
return ans;
}
int qry(int l,int r)
{
int ans=0;
if(l>1)
ans+=query(1,1,l-1,1,n).first*(r-l+1);
pii in=query(1,l,r,1,n);
ans=ans+in.second-in.first*(n-r);
return ans;
}
}T;
signed main()
{
scanf("%lld%lld",&n,&m);
T.build(1,1,n);
int op,l,r,e;
while(m--)
{
scanf("%lld",&op);
if(op==1)
{
scanf("%lld%lld%lld",&e,&l,&r);
T.update(1,l,r,1,n,e);
}
else
{
scanf("%lld%lld",&l,&r);
printf("%lld\n",T.qry(l,r));
}
}
}
详细
小提示:点击横条可展开更详细的信息
Test #1:
score: 0
Wrong Answer
time: 13ms
memory: 2232kb
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 -678335853 -311956953 -11418940682 -1809537399 -5059132187 -1811581872 -89290630 -42007...
result:
wrong answer 3rd lines differ - expected: '-118168581', found: '-678335853'
Test #2:
score: 0
Wrong Answer
time: 17ms
memory: 2236kb
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 11330957364 3825831690 14685031502 17255103261 -23729193 9974933948 21395660336 2459177084...
result:
wrong answer 2nd lines differ - expected: '7529843014', found: '11330957364'
Test #3:
score: 0
Wrong Answer
time: 25ms
memory: 66748kb
input:
666666 10000 1 92 555251 586462 1 393 28541 523118 1 448 17256 369367 1 -28 89257 596132 1 -338 3136...
output:
-130170184071656 52353837397613 -823651138275745 325022386309 -543569870835352 -700714160099282 3343...
result:
wrong answer 1st lines differ - expected: '-414130189712976', found: '-130170184071656'
Test #4:
score: 0
Wrong Answer
time: 140ms
memory: 66748kb
input:
666666 50000 1 -249 309981 333889 1 477 309512 463171 1 0 71655 592642 1 45 191249 527454 1 55 38872...
output:
109985027524956 -12029084989878 -903454689824018 -1995411863481532 11724528638152 -255579910076561 1...
result:
wrong answer 1st lines differ - expected: '120968444808072', found: '109985027524956'
Test #5:
score: 0
Wrong Answer
time: 236ms
memory: 66744kb
input:
666666 100000 1 -183 598736 630118 1 -337 605875 639236 1 -62 265069 340682 1 -96 370300 571646 1 -1...
output:
174799205319853 1387548210521016 129275922035262 1838793153506359 1347444552764269 648766969727608 4...
result:
wrong answer 1st lines differ - expected: '-250805903081209', found: '174799205319853'
Test #6:
score: 0
Wrong Answer
time: 266ms
memory: 66744kb
input:
666666 100000 2 121929 379928 2 34550 66844 1 96 338911 637923 2 161666 370147 1 -282 313713 463127 ...
output:
0 0 46837507488 -2144565871356 12891851830 22529059805178 2159710080090 3305593368228 4035725706062 ...
result:
wrong answer 6th lines differ - expected: '8888329560532', found: '22529059805178'
Test #7:
score: 0
Wrong Answer
time: 261ms
memory: 66744kb
input:
750000 100000 1 -318 454211 721481 2 239247 294171 2 52513 339575 2 424462 638364 2 683282 740790 1 ...
output:
0 0 -5392147899330 -4655802078402 -754435688709 165100963410 18460225433769 99405861222 187449896904...
result:
wrong answer 4th lines differ - expected: '-3014688113400', found: '-4655802078402'
Test #8:
score: 0
Wrong Answer
time: 267ms
memory: 66748kb
input:
1000000 100000 1 -108 318728 708230 1 -242 8738 411540 1 -119 458000 972357 2 368015 850304 1 -182 1...
output:
-69978707330725 -20910538239000 -3733012342070 -131902156147615 -43237681008514 -46453946120204 -259...
result:
wrong answer 1st lines differ - expected: '-21232196185685', found: '-69978707330725'
Test #9:
score: 0
Wrong Answer
time: 167ms
memory: 66752kb
input:
1000000 100000 2 347033 984386 2 277881 323793 1 431 735974 973576 2 782909 863840 1 -22 379088 6406...
output:
0 0 3048712203338 -275350879342 2651602554782 -1547579370013 -1388148880154 3909163587804 4459981730...
result:
wrong answer 5th lines differ - expected: '2861261347158', found: '2651602554782'
Test #10:
score: 0
Wrong Answer
time: 167ms
memory: 66752kb
input:
1000000 100000 1 -238 406279 814973 1 -425 637451 721356 1 237 340114 658854 2 279214 591961 2 17862...
output:
3413253435344 4249749642085 3270374154195 1317514995433 0 23989410767568 43170757338772 384763439091...
result:
wrong answer 4th lines differ - expected: '-7408047958251', found: '1317514995433'