QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#504148#3272. 简单数据结构Crying30 214ms81168kbC++143.7kb2024-08-04 09:16:072024-08-04 09:16:07

Judging History

你现在查看的是最新测评结果

  • [2024-08-04 09:16:07]
  • 评测
  • 测评结果:30
  • 用时:214ms
  • 内存:81168kb
  • [2024-08-04 09:16:07]
  • 提交

answer

#include<bits/stdc++.h>
#define lc(x) (x<<1)
#define rc(x) (lc(x)|1)
#define mid ((l+r)>>1)
using namespace std;
typedef long long ll; typedef array<ll,2> pr;
const int MAXN = 2e5+10;

int n,q; ll a[MAXN];
int o[MAXN]; ll x[MAXN],y[MAXN];
pr arr[MAXN]; int rk[MAXN],num;
vector<int> mdf[MAXN];
 
namespace T{ //求出每个位置从何时开始被影响到
    void solve(){
        for(int i=1,cnt=0;i<=q;i++){                                
            if(o[i] == 2)cnt++;
            else if(o[i] == 1)arr[++num] = (pr){x[i],cnt},rk[num] = i;
        }
        for(int i=1;i<=n;i++){
            for(int j=1;j<=num;j++){
                ll d = i*arr[j][1] + a[i] - arr[j][0];
                if(d > 0){
                    mdf[rk[j]].push_back(i);
                    break;
                }
            }
        }
    }
}

struct Seg{
    ll sum[MAXN<<2],w[MAXN<<2],rv[MAXN<<2],cv[MAXN<<2];
    int tag[MAXN<<2],cnt[MAXN<<2],rw[MAXN<<2];
    void pu(int x){
        sum[x] = sum[lc(x)] + sum[rc(x)];
        w[x] = w[lc(x)] + w[rc(x)];
        cnt[x] = cnt[lc(x)] + cnt[rc(x)];
        rv[x] = cnt[rc(x)] ? rv[rc(x)] : rv[lc(x)];
        rw[x] = cnt[rc(x)] ? rw[rc(x)] : rw[lc(x)];
    }
    void cover(int x,ll v){
        sum[x] = cnt[x] * v; rv[x] = v; tag[x] = 0; cv[x] = v;
    }
    void add(int x,int v){
        sum[x] += w[x] * v; rv[x] += rw[x] * v; tag[x] += v; 
    }
    void pd(int x){
        if(cv[x] != -1)cover(lc(x),cv[x]),cover(rc(x),cv[x]),cv[x] = -1;
        if(tag[x])add(lc(x),tag[x]),add(rc(x),tag[x]),tag[x] = 0;
    }
    //
    void build(int x,int l,int r,int t){
        cv[x] = -1; 
        if(l==r){
            if(t)sum[x] = a[l],w[x] = l;
            return;
        }
        build(lc(x),l,mid,t); build(rc(x),mid+1,r,t);
        pu(x);
    }
    void flip(int x,int l,int r,int pos,ll p,int q){
        if(l==r){
            sum[x] = rv[x] = p; w[x] = rw[x] = q; cnt[x] = (q>0);
            return;
        }
        pd(x);
        (pos<=mid) ? flip(lc(x),l,mid,pos,p,q) : flip(rc(x),mid+1,r,pos,p,q);
        pu(x);
    }
    ll qry(int x,int l,int r,int ql,int qr){
        if(ql>qr)return 0; if(ql<=l && qr>=r)return sum[x];
        pd(x); 
        ll ret = 0;
        if(ql<=mid)ret += qry(lc(x),l,mid,ql,qr);
        if(qr>mid)ret += qry(rc(x),mid+1,r,ql,qr);
        return ret;
    }
    void mdf(int x,int l,int r,int ql,int qr,ll v){
        if(ql>qr)return; if(ql<=l && qr>=r)return cover(x,v);
        pd(x);
        if(ql<=mid)mdf(lc(x),l,mid,ql,qr,v);
        if(qr>mid)mdf(rc(x),mid+1,r,ql,qr,v);
        pu(x);
    }
    int find(int x,int l,int r,ll v){
        if(!cnt[x] || rv[x] <= v)return n+1;
        if(l==r)return r;
        pd(x);
        int ans = find(lc(x),l,mid,v); if(ans != n+1)return ans;
        return find(rc(x),mid+1,r,v);
    }
}va,vb;

int main(){
    ios::sync_with_stdio(false); cin.tie(0);

    cin>>n>>q;
    for(int i=1;i<=n;i++)cin>>a[i];
    for(int i=1;i<=q;i++){
        cin>>o[i];
        if(o[i] == 1){
            cin>>x[i];
        }else if(o[i] == 3){
            cin>>x[i]>>y[i];
        }
    }
    T::solve();
    va.build(1,1,n,0); vb.build(1,1,n,1);
    for(int i=1;i<=q;i++){
        if(o[i] == 1){
            int j = va.find(1,1,n,x[i]);
            va.mdf(1,1,n,j,n,x[i]);

            for(auto j : mdf[i]){
                vb.flip(1,1,n,j,0,0);
                va.flip(1,1,n,j,x[i],j);
            }
        }else if(o[i] == 2){
            va.add(1,1); vb.add(1,1);
        }else{
            ll sum = va.qry(1,1,n,x[i],y[i]) + vb.qry(1,1,n,x[i],y[i]);
            cout<<sum<<"\n";
        }
    }

    return 0;
}

詳細信息

Subtask #1:

score: 10
Accepted

Test #1:

score: 10
Accepted
time: 4ms
memory: 27348kb

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: 21260kb

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: 7ms
memory: 23320kb

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: 8ms
memory: 27072kb

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: 0ms
memory: 23212kb

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: 3ms
memory: 27224kb

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: 0ms
memory: 24312kb

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: 0ms
memory: 23164kb

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: 0ms
memory: 27212kb

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: 3ms
memory: 23160kb

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: 8ms
memory: 25140kb

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: 3ms
memory: 23172kb

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: 6ms
memory: 25148kb

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: 2ms
memory: 22208kb

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: 196ms
memory: 81168kb

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: 214ms
memory: 77024kb

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: 200ms
memory: 80876kb

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: 160ms
memory: 73812kb

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:


result:


Subtask #4:

score: 0
Skipped

Dependency #1:

100%
Accepted

Dependency #2:

100%
Accepted

Dependency #3:

0%