QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#361207 | #8229. 栈 | XY_Eleven | 21 | 316ms | 31108kb | C++23 | 6.2kb | 2024-03-22 22:10:23 | 2024-03-22 22:10:24 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
//#pragma GCC optimize(3)
#define DB double
#define LL long long
#define ULL unsigned long long
#define in128 __int128
#define cint const int
#define cLL const LL
#define For(z,e1,e2) for(int z=(e1);z<=(e2);z++)
#define Rof(z,e1,e2) for(int z=(e2);z>=(e1);z--)
#define For_(z,e1,e2) for(int z=(e1);z<(e2);z++)
#define Rof_(z,e1,e2) for(int z=(e2);z>(e1);z--)
#define inint(e) scanf("%d",&e)
#define inll(e) scanf("%lld",&e)
#define inpr(e1,e2) scanf("%d%d",&e1,&e2)
#define in3(e1,e2,e3) scanf("%d%d%d",&e1,&e2,&e3)
#define outint(e) printf("%d\n",e)
#define outint_(e) printf("%d%c",e," \n"[i==n])
#define outint2_(e,e1,e2) printf("%d%c",e," \n"[(e1)==(e2)])
#define outll(e) printf("%lld\n",e)
#define outll_(e) printf("%lld%c",e," \n"[i==n])
#define outll2_(e,e1,e2) printf("%lld%c",e," \n"[(e1)==(e2)])
#define exc(e) if(e) continue
#define stop(e) if(e) break
#define ret(e) if(e) return
#define ll(e) (1ll*(e))
#define pb push_back
#define ft first
#define sc second
#define clean(e) while(!e.empty()) e.pop()
#define all(ev) ev.begin(),ev.end()
#define sz(ev) ((int)ev.size())
#define debug(x) printf("%s=%d\n",#x,x)
#define x0 _x0_
#define y1 _y1_
#define ffo fflush(stdout)
cLL mod=998244353,G=404;
template <typename Type> void get_min(Type &w1,const Type w2) { if(w2<w1) w1=w2; }
template <typename Type> void get_max(Type &w1,const Type w2) { if(w2>w1) w1=w2; }
template <typename Type> Type up_div(Type w1,Type w2) { return (w1/w2+(w1%w2?1:0)); }
template <typename Type> Type gcd(Type X_,Type Y_) { Type R_=X_%Y_; while(R_) { X_=Y_; Y_=R_; R_=X_%Y_; } return Y_; }
template <typename Type> Type lcm(Type X_,Type Y_) { return (X_/gcd(X_,Y_)*Y_); }
template <typename Type> Type md(Type w1,const Type w2=mod) { w1%=w2; if(w1<0) w1+=w2; return w1; }
template <typename Type> Type md_(Type w1,const Type w2=mod) { w1%=w2; if(w1<=0) w1+=w2; return w1; }
void ex_gcd(LL &X_,LL &Y_,LL A_,LL B_)
{ if(!B_) { X_=1ll; Y_=0ll; return ; } ex_gcd(Y_,X_,B_,A_%B_); X_=md(X_,B_); Y_=(1ll-X_*A_)/B_; }
LL inv(LL A_,LL B_=mod) { LL X_=0ll,Y_=0ll; ex_gcd(X_,Y_,A_,B_); return X_; }
template <typename Type> void add(Type &w1,const Type w2,const Type M_=mod) { w1=md(w1+w2,M_); }
void mul(LL &w1,cLL w2,cLL M_=mod) { w1=md(w1*md(w2,M_),M_); }
template <typename Type> Type pw(Type X_,Type Y_,Type M_=mod) { Type S_=1; while(Y_) { if(Y_&1) mul(S_,X_,M_); Y_>>=1; mul(X_,X_,M_); } return S_; }
mt19937 gen(time(NULL)); int rd() { return abs((int)gen()); }
cint N=1.02e5;
int n,Q;
vector <pair<int,pair<LL,LL> > > q[N];
vector <int> v[N];
array <LL,2> a[N];
struct Node
{
int l,r,mid;
LL ls,rs,sum,sum2,lcnt;
}t[N<<2];
void bld(int p,int l,int r)
{
int mid=l+r>>1;
t[p]={l,r,mid,0ll,0ll,0ll,0ll,0ll};
ret(l>=r);
bld(p<<1,l,mid),bld(p<<1|1,mid+1,r);
}
LL ans[N];
bool vis[N],b[N];
int K;
void setf(int p,int k)
{
if(vis[k])
t[p].ls=t[p].rs=t[p].sum=0ll;
else
{
if(b[k]) t[p].rs=a[k][0],t[p].sum=a[k][0]*a[k][1];
else t[p].ls=a[k][0];
}
vis[k]=!vis[k];
}
LL work(int p,LL c)
{
if(!c) return 0ll;
// printf("work [%d,%d]:%lld,%lld\n",t[p].l,t[p].r,t[p].lcnt,c);
if(t[p].l>=t[p].r) return c*a[t[p].l][1];
if(c<=t[p].lcnt) return work(p<<1,c);
else return (work(p<<1|1,c-t[p].lcnt)+t[p].sum2);
}
pair <array <LL,2>,LL> sum(int p1,int p2)
{
if(t[p2].ls>=t[p1].rs) return {{t[p1].ls+(t[p2].ls-t[p1].rs),t[p2].rs},t[p2].sum};
return {{t[p1].ls,t[p2].rs+(t[p1].rs-t[p2].ls)},t[p2].sum+work(p1,t[p1].rs-t[p2].ls)};
}
void pup(int p)
{
t[p].sum2=work(p<<1,t[p].lcnt=max(t[p<<1].rs-t[p<<1|1].ls,0ll));
auto w=sum(p<<1,p<<1|1);
t[p].ls=w.ft[0],t[p].rs=w.ft[1],t[p].sum=w.sc;
}
void change(int p)
{
if(t[p].l>=t[p].r)
{
setf(p,K);
return ;
}
change(p<<1|(K>t[p].mid));
pup(p);
}
void Change(int k)
{
K=k;
change(1);
}
int L,R;
vector <int> g;
void qry(int p)
{
if(L<=t[p].l&&t[p].r<=R)
{
g.pb(p);
return ;
}
if(L<=t[p].mid) qry(p<<1);
if(R>t[p].mid) qry(p<<1|1);
}
deque <pair<int,LL> > st;
LL Qry(int k,LL c)
{
if(!c) return 0ll;
// printf("\nquery %d,%lld\n",k,c);
L=1,R=k,g.clear();
qry(1);
st.clear();
LL sum=0ll;
for(auto i:g)
{
// printf("ck %d:[%d,%d](%lld,%lld)\n",i,t[i].l,t[i].r,t[i].ls,t[i].rs);
LL w=t[i].ls;
while(!st.empty()&&w>=st.front().sc)
w-=st.front().sc,st.pop_back();
if(!st.empty()) st.front().sc-=w;
st.pb({i,t[i].rs});
}
for(auto [p,c2]:st)
{
get_min(c2,c); c=max(0ll,c-c2);
// printf("[%d,%d]:%lld(%lld)\n",t[p].l,t[p].r,c2,t[p].rs);
sum+=work(p,c2);
}
return sum;
}
void print(int p)
{
// printf("print %d:[%d,%d] %lld(%lld)&%lld\n",p,t[p].l,t[p].r,t[p].ls,t[p].lcnt,t[p].rs);
ret(t[p].l>=t[p].r);
print(p<<1),print(p<<1|1);
}
void main_solve()
{
inpr(n,Q);
int opt;
For(i,1,Q)
{
inint(opt);
if(opt==3)
{
int k; LL l,r;
scanf("%d%lld%lld",&k,&l,&r);
q[k].pb({i,{l,r}});
}
else
{
int l,r; inpr(l,r);
v[l].pb(i),v[r+1].pb(i);
if(opt==1)
{
LL c,w; scanf("%lld%lld",&c,&w);
a[i]={c,w};
}
else
{
LL c; scanf("%lld",&c);
a[i]={c,0ll};
}
b[i]=(opt==1);
}
}
bld(1,1,Q);
memset(ans,0xff,(Q+1)*sizeof(LL));
For(i,1,n)
{
// printf("\ni=%d\n",i);
for(auto j:v[i]) Change(j);
for(auto [id,c]:q[i])
ans[id]=Qry(id,c.sc)-Qry(id,c.ft-1ll);
}
For(i,1,Q) if(ans[i]!=-1ll)
outll(ans[i]);
}
int main()
{
// ios::sync_with_stdio(0); cin.tie(0);
// freopen("in.txt","r",stdin);
// freopen("out1.txt","w",stdout);
// rsand(time(NULL));
// main_init();
// int _; inint(_); For(__,1,_) // T>1 ?
// printf("\n------------\n\n"),
main_solve();
return 0;
}
/*
2 2 2 1 1
*/
詳細信息
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 9012kb
input:
4907 4910 2 763 3330 1 3 307 1 1 1 2262 3430 22699 89397 1 1915 4000 51541 67587 2 212 2990 9763 2 1086 2162 1 2 1813 4496 16760 1 51 2796 68005 99390 1 1267 1519 74236 66178 3 1768 23808 54314 2 900 4122 27758 3 3287 17350 28989 2 3277 4024 3633 2 444 4866 1 2 353 4219 1061 1 987 3141 99906 17320 2...
output:
0 3032090730 903396180 471569175 200648623 98486697 647114751 123945 50793012 61782451 0 0 0 762429740 321140700 871619914 536311874 5361094892 0 1792521566 6640518748 2415375780 122249391 0 5250788038 1145132507 140071334 0 118545795 3086405469 5646099271 84280112 1232466642 4992966775 6821025580 3...
result:
wrong answer 23rd numbers differ - expected: '249435711', found: '122249391'
Subtask #2:
score: 21
Accepted
Test #6:
score: 21
Accepted
time: 258ms
memory: 31108kb
input:
99999 99998 1 5026 18575 27178 90423 3 30623 1 1 3 76936 1 1 1 77021 95683 84664 24734 1 46085 74886 40512 11266 3 5048 8594 22468 1 53318 77721 97151 70784 1 70645 91192 37556 13013 1 56752 56940 91812 62887 1 7928 34576 87339 69404 3 74875 32807 100970 3 22338 17221 25771 3 21421 20602 57957 3 717...
output:
0 0 1254619125 4366274868 593473604 2592655824 3657975552 5652513833 110091352 1226646296 1989326852 763582808 8205318671 1659086055 3012598941 20085582585 3242801176 17381308704 24555397019 4722824224 20308857160 899316516 38935050954 988382364 13341823621 11397759491 2449683584 5875277101 80572355...
result:
ok 49797 numbers
Test #7:
score: 0
Accepted
time: 265ms
memory: 30836kb
input:
100000 99994 3 92225 1 1 3 10037 1 1 3 74283 1 1 3 2266 1 1 3 50962 1 1 3 81075 1 1 1 503 97219 60712 28632 1 20530 96581 71439 60132 3 41317 2559 104920 1 38204 95641 16185 4127 1 81150 90487 12130 78009 3 26946 49794 94793 3 30822 94956 120229 3 3139 25745 34556 1 31304 71829 59249 1581 1 34152 81...
output:
0 0 0 0 0 0 4323380784 2361991500 1519776168 252305184 5480718598 475075230 355440252 50964960 470925609 563617236 5250822628 167047570 5642890643 263790112 16650744580 9469618067 1523342134 5252794500 3397151474 44843260 15925043590 7615102649 642874296 805218390 12371730590 946262746 19013805530 1...
result:
ok 49918 numbers
Test #8:
score: 0
Accepted
time: 316ms
memory: 30448kb
input:
99992 100000 1 47419 74011 81562 83218 1 24365 27999 38558 68071 1 28685 99034 50336 45319 1 9957 51419 65767 96547 1 26613 48906 69394 57314 1 53501 94770 64814 21312 1 17181 66742 69740 22586 3 16409 7244 53001 1 88013 89718 83001 55044 1 37425 73824 89216 49784 1 14648 78441 67461 78275 1 9378 35...
output:
4417797626 26979560445 4524699650 21738613173 262351691 12978001923 17651184324 0 273579160 4411564116 1970670680 17453286633 14834332800 20575290994 10992737164 42531639041 7318986928 7239761756 24667868512 11295443456 33762100957 3516593780 14180850735 92220338161 448071480 72233196570 82174722698...
result:
ok 20053 numbers
Test #9:
score: 0
Accepted
time: 299ms
memory: 30448kb
input:
99993 100000 3 62344 1 1 1 46505 84554 62554 13482 1 8919 48492 3447 94458 1 3631 10892 36393 96414 1 2116 19576 2034 35286 1 76156 78230 41441 84879 1 36883 94127 37375 63171 1 39186 82305 6701 95798 3 78504 62801 72899 1 80076 91666 32526 7060 1 72382 96261 53068 10233 1 13914 57881 72281 7618 3 9...
output:
0 637963929 0 1496578500 10148463667 4717998934 125126442 10787190313 11490899784 2030671668 37797648 715325384 21191265941 3879816018 24364790835 25534294755 36504541523 6078290241 317915871 18538657312 22064935269 1065997831 3053544299 2695680279 55437334876 88991768121 1121205357 15153767807 5230...
result:
ok 20050 numbers
Test #10:
score: 0
Accepted
time: 182ms
memory: 30832kb
input:
99993 99996 3 38184 1 1 3 82734 1 1 1 25048 36616 78516 82979 3 95863 1 1 3 21933 1 1 3 49811 1 1 3 86826 1 1 3 94697 1 1 3 85109 1 1 3 40304 1 1 3 74963 1 1 3 21627 1 1 3 59714 1 1 3 87341 1 1 3 31090 15354 46066 1 38063 59594 70848 33527 3 32282 26788 77780 3 48817 25308 34737 3 58282 24515 41180 ...
output:
0 0 0 0 0 0 0 0 0 0 0 0 0 2548534027 4231348147 316159610 558760982 0 0 0 1166203168 1096131738 0 1103574732 299664326 11812262 0 0 0 147854070 78842610 60214492 331278844 0 0 3357828214 814586369 6914566022 603327305 0 0 515587541 244451179 0 560342272 2883490236 0 0 2965823280 29999739 511675577 2...
result:
ok 80045 numbers
Test #11:
score: 0
Accepted
time: 185ms
memory: 30908kb
input:
99999 99992 1 55982 96008 8771 41000 3 64884 827 1792 1 61684 84951 91560 74217 3 11864 1 1 3 73424 650 93216 1 45712 86024 18142 11742 3 69505 1599 109909 3 4215 1 1 3 70815 3258 82166 1 32918 86166 51184 24724 3 49468 10556 63376 3 11217 1 1 3 32460 1 1 3 58673 3861 11467 1 41409 47728 99526 31031...
output:
39606000 0 6600256565 7201866396 0 5673230715 1207451970 0 0 233007432 0 7603519685 4128358246 4817987659 0 4234154067 1579488960 70725000 0 243499000 1045745784 328164000 2552685084 209221360 114636000 139687000 1223600748 6074963562 1977843509 10990094062 220744000 36039000 243602384 3717973598 85...
result:
ok 80206 numbers
Subtask #3:
score: 0
Wrong Answer
Test #12:
score: 0
Wrong Answer
time: 176ms
memory: 30624kb
input:
100000 99993 1 47773 70467 16065 1 2 52349 78446 2304 3 40821 1 1 1 40216 93069 78144 1 1 41089 43671 76025 1 2 35263 68629 31066 3 79881 13534 57327 3 5556 1 1 2 21962 38192 1 1 664 58116 9417 1 3 28089 6039 7989 2 88500 90302 9946 3 63215 49410 60770 2 11069 89527 57581 2 70303 97603 12363 1 3420 ...
output:
0 43794 0 1951 11361 129 898 29245 7969 1947 34972 16405 59952 123666 24537 68209 34537 0 32225 37527 0 31810 16824 96178 14285 300941 57614 1602 129470 61935 4068 114182 17609 152949 26099 179359 250368 4796 183349 125791 17414 61871 42058 0 2698 183297 23029 54464 0 26259 204595 35604 0 0 18437 29...
result:
wrong answer 58th numbers differ - expected: '0', found: '1'
Subtask #4:
score: 0
Wrong Answer
Test #17:
score: 0
Wrong Answer
time: 177ms
memory: 30876kb
input:
99999 99996 3 77889 1 10000000000 1 6316 86327 89644 386 3 9260 1 10000000000 2 2603 47234 69717 2 20260 73011 19290 2 62477 81233 26127 1 50140 68508 37004 98794 2 14449 22788 16063 1 43860 84932 50375 21777 1 67345 94584 28202 66610 2 661 68654 1 1 14411 94422 82738 61196 1 16563 94416 4920 38408 ...
output:
0 34602584 0 0 27739639583 1363823412 0 1902514434 1902514434 2147553884 1902514434 15794375094 0 4192446657 15797478185 13141921145 0 6562242600 5775183021 363222594 1995572111 2193350882 0 6843261316 5508935691 250667843 0 14181223499 7734049978 21958753162 12852564544 4496343819 15011219087 86397...
result:
wrong answer 18th numbers differ - expected: '6351944090', found: '6562242600'
Subtask #5:
score: 0
Skipped
Dependency #1:
0%