QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#427048 | #3272. 简单数据结构 | positive1 | 20 | 6ms | 14360kb | C++14 | 3.5kb | 2024-06-01 08:04:16 | 2024-06-01 08:04:16 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
constexpr int maxn=1<<18;
int n,q,sz,glb;
long long a[maxn];
namespace BIT
{
struct info
{
long long a,b;
void operator+=(const info&rhs){a+=rhs.a,b+=rhs.b;}
void operator-=(const info&rhs){a-=rhs.a,b-=rhs.b;}
}t[maxn];
void add(int i,const info&v)
{
for(;i<=n;i+=i&-i) t[i]+=v;
}
info query(int l,int r)
{
info s{0,0};
for(;r;r-=r&-r) s+=t[r];
for(l--;l;l-=l&-l) s-=t[l];
return s;
}
}
namespace SG2
{
struct node
{
int l,r,cnt,tag;
long long mn,mx,id,sum,cov;
void cover(long long x)
{
if(!cnt) return;
mn=mx=cov=x;
sum=cnt*x;
tag=0;
}
void add(int x)
{
if(!cnt) return;
mn+=1LL*l*x;
mx+=1LL*r*x;
tag+=x;
sum+=id*x;
}
}t[maxn*2];
void pushdown(int id)
{
node &rt=t[id],&l=t[id*2],&r=t[id*2+1];
if(rt.cov!=-1)
{
l.cover(rt.cov);
r.cover(rt.cov);
rt.cov=-1;
}
if(rt.tag)
{
l.add(rt.tag);
r.add(rt.tag);
rt.tag=0;
}
}
long long query(int id,int l,int r,int L,int R)
{
node &rt=t[id];
if(l==L&&r==R) return rt.sum;
pushdown(id);
int mid=(l+r)>>1;
if(R<=mid) return query(id*2,l,mid,L,R);
if(L>mid) return query(id*2+1,mid+1,r,L,R);
return query(id*2,l,mid,L,mid)+query(id*2+1,mid+1,r,mid+1,R);
}
void pushup(int id)
{
node &rt=t[id],&l=t[id*2],&r=t[id*2+1];
rt.mn=l.l?l.mn:r.mn;
rt.l=l.l?l.l:r.l;
rt.mx=r.r?r.mx:l.mx;
rt.r=r.r?r.r:l.r;
rt.sum=l.sum+r.sum;
}
void chkmin(int id,long long v)
{
node &rt=t[id];
if(!rt.cnt||rt.mx<=v) return;
if(rt.mn>=v)
{
rt.cover(v);
return;
}
pushdown(id);
chkmin(id*2,v);
chkmin(id*2+1,v);
pushup(id);
}
void insert(int id,int l,int r,int i,long long v)
{
node &rt=t[id];
rt.cnt++;
rt.id+=i;
if(l==r)
{
rt.l=rt.r=i;
rt.sum=rt.mn=rt.mx=v;
return;
}
pushdown(id);
int mid=(l+r)>>1;
if(i<=mid) insert(id*2,l,mid,i,v);
else insert(id*2+1,mid+1,r,i,v);
pushup(id);
}
}
vector<int>upd[maxn];
namespace SG1
{
struct node
{
int k,ti;
long long b;
long long operator()(){return 1LL*k*glb+b;}
}t[maxn*2];
void pushup(int id)
{
node &rt=t[id],&l=t[id*2],&r=t[id*2+1];
if(!r.k)
{
rt.k=l.k;
rt.ti=-1;
rt.b=l.b;
return;
}
if(!l.k||r()>=l())
{
rt.k=r.k;
rt.ti=-1;
rt.b=r.b;
return;
}
rt.k=l.k,rt.b=l.b;
long long ed=(l.b-r.b+r.k-l.k-1)/(r.k-l.k);
if(ed>q)
{
rt.ti=-1;
}
else if(rt.ti!=ed)
{
rt.ti=ed;
upd[ed].push_back(id);
}
}
void build()
{
int i;
for(i=1;i<=n;i++) t[i+sz-1]={i,0,a[i]};
for(i=sz-1;i>=1;i--) pushup(i);
}
void chkmin(int i,long long v)
{
if(i>=sz)
{
t[i].k=t[i].b=0;
i-=sz-1;
SG2::insert(1,1,sz,i,v);
BIT::add(i,{-a[i],-i});
}
else
{
if(t[i*2]()>v) chkmin(i*2,v);
if(t[i*2+1]()>v) chkmin(i*2+1,v);
pushup(i);
}
}
}
int main()
{
ios::sync_with_stdio(false),cin.tie(0);
int i,op,l,r;
long long v;
cin>>n>>q;
for(i=1;i<=n;i++) cin>>a[i],BIT::add(i,{a[i],i});
for(sz=1;sz<n;sz*=2);
SG1::build();
for(i=1;i<=q;i++)
{
cin>>op;
if(op==1)
{
cin>>v;
SG1::chkmin(1,v);
SG2::chkmin(1,v);
}
else if(op==2)
{
SG2::t[1].add(1);
glb++;
for(int id:upd[glb])
{
if(SG1::t[id].ti!=glb) continue;
SG1::pushup(id);
for(id>>=1;id;id>>=1)
{
int lstk=SG1::t[id].k;
SG1::pushup(id);
if(SG1::t[id].k==lstk) break;
}
}
}
else
{
cin>>l>>r;
auto tmp=BIT::query(l,r);
cout<<tmp.b*glb+tmp.a+SG2::query(1,1,sz,l,r)<<'\n';
}
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 10
Accepted
time: 6ms
memory: 14304kb
input:
5000 5000 29940 259997 53132 912489 608312 594283 432259 344137 889466 383028 320097 337418 571199 372832 563110 542407 133378 998389 238387 120880 477310 634888 191990 133585 935315 558139 141724 893331 190118 991968 843042 384930 935256 891482 123419 91431 955722 376987 197566 106433 234494 645967...
output:
512185934 455189773 121665669 408693244 291779262 45671866 242375008 302245547 222004631 41963113 343434445 347127029 183849524 2144625 278637672 220461451 20719635 108759503 22099550 34631220 55848925 92362584 36949030 86469096 43509864 50829332 1334865 76069109 114623436 13564322 79974466 15230088...
result:
ok 1671 numbers
Test #2:
score: -10
Wrong Answer
time: 6ms
memory: 14124kb
input:
5000 5000 754848159362 799142221874 945332296572 929342054343 220343371940 207059247564 870301066785 609144766745 830351478389 198801101804 768950635554 592202774571 800496073014 730985048260 581401590014 934021096780 587980626010 77068543347 206074783770 390850923112 122794404396 281461236458 11092...
output:
116508179221533 546749128093796 428204725638614 39703523008217 175276724949769 115828286259777 53486037590699 32085609121169 79863137176116 53634397678952 11984901865039 53065256000101 29045072084569 26415198892331 75111789355520 75384800485844 34569350111656 133340053405484 51324651695791 973372919...
result:
wrong answer 3rd numbers differ - expected: '194349368397972', found: '428204725638614'
Subtask #2:
score: 20
Accepted
Subtask #3:
score: 0
Wrong Answer
Test #1:
score: 15
Accepted
time: 0ms
memory: 14216kb
input:
5000 5000 29940 259997 53132 912489 608312 594283 432259 344137 889466 383028 320097 337418 571199 372832 563110 542407 133378 998389 238387 120880 477310 634888 191990 133585 935315 558139 141724 893331 190118 991968 843042 384930 935256 891482 123419 91431 955722 376987 197566 106433 234494 645967...
output:
512185934 455189773 121665669 408693244 291779262 45671866 242375008 302245547 222004631 41963113 343434445 347127029 183849524 2144625 278637672 220461451 20719635 108759503 22099550 34631220 55848925 92362584 36949030 86469096 43509864 50829332 1334865 76069109 114623436 13564322 79974466 15230088...
result:
ok 1671 numbers
Test #2:
score: -15
Wrong Answer
time: 6ms
memory: 14360kb
input:
5000 5000 754848159362 799142221874 945332296572 929342054343 220343371940 207059247564 870301066785 609144766745 830351478389 198801101804 768950635554 592202774571 800496073014 730985048260 581401590014 934021096780 587980626010 77068543347 206074783770 390850923112 122794404396 281461236458 11092...
output:
116508179221533 546749128093796 428204725638614 39703523008217 175276724949769 115828286259777 53486037590699 32085609121169 79863137176116 53634397678952 11984901865039 53065256000101 29045072084569 26415198892331 75111789355520 75384800485844 34569350111656 133340053405484 51324651695791 973372919...
result:
wrong answer 3rd numbers differ - expected: '194349368397972', found: '428204725638614'
Subtask #4:
score: 0
Skipped
Dependency #1:
0%