QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#734544 | #3272. 简单数据结构 | Starrykiller | 30 | 319ms | 71656kb | C++23 | 3.3kb | 2024-11-11 12:28:09 | 2024-11-11 12:28:10 |
Judging History
answer
// /qq Madoka Kaname
#include <bits/stdc++.h>
using namespace std;
#define int long long
constexpr int MAXN=2e5+10;
struct op { int t, x, y; };
int a[MAXN]; vector<op> q; int n, m;
using db=double;
namespace solve_sub1 {
struct fun {
int k, b;
int operator()(int x) const { return k*x+b; }
};
db point(fun a, fun b) {
return (a.b-b.b)/db(b.k-a.k);
}
int tot=0;
struct SG {
#define ll(p) tr[p].l
#define rr(p) tr[p].r
#define convex(p) tr[p].convex
#define sum(p) tr[p].sum
#define val(p) tr[p].val
#define ls(p) (p<<1)
#define rs(p) (p<<1|1)
struct node {
int l, r;
vector<fun> convex;
int sum, val;
} tr[MAXN<<2];
void pushup(int p) {
convex(p)=convex(ls(p));
auto &now=convex(p);
for (const auto &i: convex(rs(p))) {
while (now.size()>1 && point(*next(rbegin(now)),i)<point(*next(rbegin(now)),*rbegin(now))) now.pop_back();
now.push_back(i);
}
while (now.size()>1 && (*begin(now))(tot)<=(*next(begin(now)))(tot)) now.erase(now.begin());
sum(p)=sum(ls(p))+sum(rs(p));
}
void build(int cl, int cr, int a[], int p=1) {
ll(p)=cl; rr(p)=cr;
if (cl==cr) {
val(p)=sum(p)=a[cl];
convex(p)={{cl,a[cl]}};
return;
}
int mid=(cl+cr)>>1;
build(cl,mid,a,ls(p)); build(mid+1,cr,a,rs(p));
pushup(p);
}
void maintain(int l, int r, int v, int p=1) {
int cl=ll(p), cr=rr(p);
if (cl==cr) {
val(p)=min(val(p)+cl*tot,v)-cl*tot;
sum(p)=val(p);
convex(p)={{cl,val(p)}};
return;
}
int i=0;
while (i+1<(int)convex(p).size() && convex(p)[i](tot)<convex(p)[i+1](tot)) ++i;
if (convex(p)[i](tot)<=v) return;
int mid=(cl+cr)>>1;
if (l<=mid) maintain(l,r,v,ls(p));
if (r>mid) maintain(l,r,v,rs(p));
pushup(p);
}
int qsum(int l, int r, int p=1) {
int cl=ll(p), cr=rr(p);
if (l<=cl&&cr<=r) return sum(p);
// if (cl==cr) return sum(p)+cl*tot;
int mid=(cl+cr)>>1, res=0;
if (l<=mid) res+=qsum(l,r,ls(p));
if (r>mid) res+=qsum(l,r,rs(p));
return res;
}
} sg;
void solve() {
sg.build(1,n,a);
for (const auto& [t,x,y]: q) {
if (t==1) sg.maintain(1,n,x);
else if (t==2) tot++;
else cout<<sg.qsum(x,y)+(y-x+1)*(x+y)*tot/2<<'\n';
}
}
};
namespace solve_sub2 {
void solve() {
}
};
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cin>>n>>m;
for (int i=1; i<=n; ++i) cin>>a[i];
int has_2=0;
for (int i=0,t,x,y; i<m; ++i) {
cin>>t; x=y=0;
has_2|=t==2;
if (t==1) {
cin>>x;
} else if (t==3) {
cin>>x>>y;
}
q.push_back({t,x,y});
}
// if (n<=5000 || has_2)
solve_sub1::solve();
// else solve_sub2::solve();
}
详细
Subtask #1:
score: 10
Accepted
Test #1:
score: 10
Accepted
time: 14ms
memory: 48816kb
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
Accepted
time: 3ms
memory: 47776kb
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 194349368397972 39703523008217 175276724949769 115828286259777 53486037590699 32085609121169 79863137176116 53634397678952 11984901865039 53065256000101 29045072084569 26415198892331 75111789355520 75384800485844 34569350111656 133340053405484 51324651695791 973372919...
result:
ok 1647 numbers
Test #3:
score: 10
Accepted
time: 10ms
memory: 49044kb
input:
5000 5000 2572389899 2379766449 7410864819 2850299650 5617053831 3824312403 9814616879 8435146331 612453351 6111276232 7985477358 2776770282 2475123938 8017080204 7914003508 932800576 1394850160 1615934603 2716519725 6482033755 4787594046 7431658437 9394772703 5567857454 8294657000 2254310003 522061...
output:
10215584720705 1705389861 345800268 2011341781 2308552335 292528530 262542520 978988815 1435722498 941192965 986070818 873158540 1424652645 128856850 1383766618 1238322582 1869688874 820493117 1165528560 1332973518 2307494520 999182443 932104492 823277168 1062040845 1227853390 1624003330 1769087853 ...
result:
ok 1677 numbers
Test #4:
score: 10
Accepted
time: 17ms
memory: 48844kb
input:
5000 5000 999809 999517 999488 999380 999248 998857 998620 998604 998567 998308 998186 997997 997810 997577 997322 997020 996746 996534 996197 995855 995826 995640 995600 995210 995081 994967 994685 994625 994443 994442 994262 993784 993725 993555 993306 993103 993081 992995 992414 991911 991909 991...
output:
16773634 412440775 172002115 859804112 771558481 736128415 379732036 26069114 230547108 124250573 144893959 16706694 204005800 25688354 45410890 426029778 358724432 507488261 286534500 26563180 474284154 22346892 56002662 236061693 295241526 137542524 22942480 293165763 323726733 160884504 192510432...
result:
ok 1650 numbers
Test #5:
score: 10
Accepted
time: 58ms
memory: 47924kb
input:
5000 5000 29989 29976 29976 29973 29966 29964 29960 29959 29950 29950 29943 29942 29939 29934 29931 29921 29914 29898 29873 29853 29845 29839 29833 29823 29793 29789 29779 29767 29765 29763 29759 29743 29742 29727 29724 29717 29711 29711 29710 29709 29709 29705 29695 29692 29687 29683 29678 29673 29...
output:
1677454 842408 7914094 20958765 1919270 1922628 25681578 7752212 4645740 4828824 44635274 4507503 10332327 943492 14007222 24519700 6369696 10888484 8301980 21731014 46268553 396 671 5698 12727 10692 121644 1954398 26911503 6554385 672220 8506939 3468479 3589800 9368964 17529036 9895900 4797296 6049...
result:
ok 1647 numbers
Test #6:
score: 10
Accepted
time: 11ms
memory: 47904kb
input:
5000 500 29995 29990 29989 29988 29985 29981 29976 29971 29964 29937 29930 29922 29919 29910 29883 29883 29866 29864 29855 29855 29850 29843 29842 29836 29834 29828 29827 29821 29820 29819 29819 29818 29817 29814 29800 29799 29798 29794 29783 29777 29769 29765 29758 29754 29750 29745 29741 29741 297...
output:
29842583 9940497 16817240 29922210 13110978 400953 90403379 2520804 5008146 8960380 3019016 10404797 2657305 48660920 16149760 15343500 41648193 29264570 13432320 11089916 14534100 24971099 6748971 9015984 10408641 16352180 4234968 14245138 15540872 8479523 1054657 11951303 1314467 20398020 3903982 ...
result:
ok 159 numbers
Test #7:
score: 10
Accepted
time: 11ms
memory: 47444kb
input:
500 5000 29998 29894 29881 29844 29816 29792 29788 29741 29403 29329 29188 29184 29044 29039 28923 28878 28667 28624 28578 28567 28397 28374 28266 28233 28185 28120 28078 27835 27806 27778 27770 27769 27501 27475 27387 27320 27318 27209 27188 27183 27173 27125 27005 26977 26972 26949 26927 26784 267...
output:
101428 529856 311680 1060052 1284458 1226856 517734 141825 690886 1436243 203775 8910 110817 371700 196416 294690 543780 541581 126474 545259 91364 399750 635400 380254 32571 989562 786370 25752 67921 22420 99330 155855 69388 338997 150689 187210 550625 194129 23481 662186 343232 75411 225330 155133...
result:
ok 1622 numbers
Subtask #2:
score: 20
Accepted
Subtask #3:
score: 0
Time Limit Exceeded
Test #1:
score: 15
Accepted
time: 16ms
memory: 47808kb
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
Accepted
time: 12ms
memory: 48296kb
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 194349368397972 39703523008217 175276724949769 115828286259777 53486037590699 32085609121169 79863137176116 53634397678952 11984901865039 53065256000101 29045072084569 26415198892331 75111789355520 75384800485844 34569350111656 133340053405484 51324651695791 973372919...
result:
ok 1647 numbers
Test #3:
score: 15
Accepted
time: 7ms
memory: 47792kb
input:
5000 5000 2572389899 2379766449 7410864819 2850299650 5617053831 3824312403 9814616879 8435146331 612453351 6111276232 7985477358 2776770282 2475123938 8017080204 7914003508 932800576 1394850160 1615934603 2716519725 6482033755 4787594046 7431658437 9394772703 5567857454 8294657000 2254310003 522061...
output:
10215584720705 1705389861 345800268 2011341781 2308552335 292528530 262542520 978988815 1435722498 941192965 986070818 873158540 1424652645 128856850 1383766618 1238322582 1869688874 820493117 1165528560 1332973518 2307494520 999182443 932104492 823277168 1062040845 1227853390 1624003330 1769087853 ...
result:
ok 1677 numbers
Test #4:
score: 15
Accepted
time: 21ms
memory: 48928kb
input:
5000 5000 999809 999517 999488 999380 999248 998857 998620 998604 998567 998308 998186 997997 997810 997577 997322 997020 996746 996534 996197 995855 995826 995640 995600 995210 995081 994967 994685 994625 994443 994442 994262 993784 993725 993555 993306 993103 993081 992995 992414 991911 991909 991...
output:
16773634 412440775 172002115 859804112 771558481 736128415 379732036 26069114 230547108 124250573 144893959 16706694 204005800 25688354 45410890 426029778 358724432 507488261 286534500 26563180 474284154 22346892 56002662 236061693 295241526 137542524 22942480 293165763 323726733 160884504 192510432...
result:
ok 1650 numbers
Test #5:
score: 15
Accepted
time: 59ms
memory: 49060kb
input:
5000 5000 29989 29976 29976 29973 29966 29964 29960 29959 29950 29950 29943 29942 29939 29934 29931 29921 29914 29898 29873 29853 29845 29839 29833 29823 29793 29789 29779 29767 29765 29763 29759 29743 29742 29727 29724 29717 29711 29711 29710 29709 29709 29705 29695 29692 29687 29683 29678 29673 29...
output:
1677454 842408 7914094 20958765 1919270 1922628 25681578 7752212 4645740 4828824 44635274 4507503 10332327 943492 14007222 24519700 6369696 10888484 8301980 21731014 46268553 396 671 5698 12727 10692 121644 1954398 26911503 6554385 672220 8506939 3468479 3589800 9368964 17529036 9895900 4797296 6049...
result:
ok 1647 numbers
Test #6:
score: 15
Accepted
time: 11ms
memory: 48480kb
input:
5000 500 29995 29990 29989 29988 29985 29981 29976 29971 29964 29937 29930 29922 29919 29910 29883 29883 29866 29864 29855 29855 29850 29843 29842 29836 29834 29828 29827 29821 29820 29819 29819 29818 29817 29814 29800 29799 29798 29794 29783 29777 29769 29765 29758 29754 29750 29745 29741 29741 297...
output:
29842583 9940497 16817240 29922210 13110978 400953 90403379 2520804 5008146 8960380 3019016 10404797 2657305 48660920 16149760 15343500 41648193 29264570 13432320 11089916 14534100 24971099 6748971 9015984 10408641 16352180 4234968 14245138 15540872 8479523 1054657 11951303 1314467 20398020 3903982 ...
result:
ok 159 numbers
Test #7:
score: 15
Accepted
time: 11ms
memory: 48996kb
input:
500 5000 29998 29894 29881 29844 29816 29792 29788 29741 29403 29329 29188 29184 29044 29039 28923 28878 28667 28624 28578 28567 28397 28374 28266 28233 28185 28120 28078 27835 27806 27778 27770 27769 27501 27475 27387 27320 27318 27209 27188 27183 27173 27125 27005 26977 26972 26949 26927 26784 267...
output:
101428 529856 311680 1060052 1284458 1226856 517734 141825 690886 1436243 203775 8910 110817 371700 196416 294690 543780 541581 126474 545259 91364 399750 635400 380254 32571 989562 786370 25752 67921 22420 99330 155855 69388 338997 150689 187210 550625 194129 23481 662186 343232 75411 225330 155133...
result:
ok 1622 numbers
Test #8:
score: 15
Accepted
time: 319ms
memory: 71656kb
input:
200000 200000 230887273973 981603875652 113292402721 438678940199 836631032882 266043112082 527547838654 732594084126 329246064377 369715767534 658438750450 410647482510 267084058934 877638442790 42545402543 840640973131 524426029052 933194442797 563955124048 700439032209 703056463665 314702014994 2...
output:
57598679467633984 27633342974043229 53103855900352089 23674346835506590 3852674985707986 10275950481054823 12431303365285554 8544611655980608 2389235296573674 14032171746842112 1989852345437218 3023474254710557 10206172732678237 566682480788486 12841355927078228 3314140857532774 6853056879869055 426...
result:
ok 66471 numbers
Test #9:
score: 15
Accepted
time: 290ms
memory: 71352kb
input:
200000 200000 193280545702 655617907032 520020568122 924552667378 143594139030 973986202692 536112328511 593191407420 600294405318 537716863876 647369589347 474895911916 561323875673 502611350541 439667606274 729797591406 918513719062 639756485309 395779313629 313489354572 465191320917 553170969320 ...
output:
608863633738238 3786927180142094 452103531234633 9664234826140346 29026059002382136 24626742579548575 8886732675995524 779910843983231 2664698300317277 6258050515383222 17217896068263017 5082078116244856 10914646545075317 25332887896820678 17674862074825538 1017547586322428 4733495089038952 11748392...
result:
ok 66828 numbers
Test #10:
score: 15
Accepted
time: 294ms
memory: 71456kb
input:
200000 200000 230887273973 981603875652 113292402721 438678940199 836631032882 266043112082 527547838654 732594084126 329246064377 369715767534 658438750450 410647482510 267084058934 877638442790 42545402543 840640973131 524426029052 933194442797 563955124048 700439032209 703056463665 314702014994 2...
output:
57598679467633984 27633342974043229 53103855900352089 23674346835506590 3852674985707986 10275950481054823 12431303365285554 8544611655980608 2389235296573674 14032171746842112 1989852345437218 3023474254710557 10206172732678237 566682480788486 12841355927078228 3314140857532774 6853056879869055 426...
result:
ok 66471 numbers
Test #11:
score: 15
Accepted
time: 142ms
memory: 70932kb
input:
200000 200000 519459450162 10879845041 930700340890 892959388241 854791814543 697685193883 214253752600 273258877854 55159208956 892528231362 389836726316 703506482099 8610606141 85845790634 548326805992 836725246847 24092217406 514192553898 762371990803 647463229778 56673708852 261110727557 5879224...
output:
39205765295178795 19123794695653611 6688678461324366 369254584590641 12204684998168247 2332887959581270 6683195406547104 1449824999639067 265480482360672 5217805914373175 503972221924653 5579714074875033 1132395782107834 1844018899364696 3013742383536550 1060251548537743 238726901964514 458326212186...
result:
ok 99706 numbers
Test #12:
score: 0
Time Limit Exceeded
input:
200000 200000 901619236607 229030223535 679386583228 190374644028 58031782631 737434362236 974717299120 326289231381 850178711788 572269302384 395499531010 850383556703 579279902202 668752975933 728660086625 857293773198 445790473881 565179337801 280677040114 32224664946 562818265582 181541361344 61...
output:
1275442438330896 8838001159737540 50499694707535958 20165817812874840 64655040338209555 5433453815868744 4414909789423188 38306143042800529 55623475031738851 29689330077939129 7296551101395907 24128395443163258 3048915450254147 5133008146105073 15631430569981527 66523135762209041 22470109680084636 1...
result:
Subtask #4:
score: 0
Skipped
Dependency #1:
100%
Accepted
Dependency #2:
100%
Accepted
Dependency #3:
0%