QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#308510#8014. 新本格魔法少女crazy_sea10 1289ms71796kbC++141.9kb2024-01-20 09:09:412024-01-20 09:09:41

Judging History

This is the latest submission verdict.

  • [2024-01-20 09:09:41]
  • Judged
  • Verdict: 10
  • Time: 1289ms
  • Memory: 71796kb
  • [2024-01-20 09:09:41]
  • Submitted

answer

#include<bits/stdc++.h>
#define ls (now<<1)
#define rs (now<<1|1)
#define mid ((l+r)>>1)
using namespace std;
typedef long long ll;
const int N=5e5+10,M=N<<2;
int L,R;
namespace seg
{
	int tag[M],len[M];
	ll tr[M];
	void update(int now)
	{
		if(tag[now]) tr[now]=1ll*tag[now]*len[now];
		else tr[now]=tr[ls]+tr[rs];
	}
	void Tag(int x,int A)
	{
		tr[x]+=1ll*(A-tag[x])*len[x];
		tag[x]=A;
	}
	void push_down(int now)
	{
		if(!tag[now]) return;
		Tag(ls,tag[now]),Tag(rs,tag[now]);
		tag[now]=0;
	}
	void build(int l,int r,int now)
	{
		tag[now]=0,len[now]=r-l+1,tr[now]=0;
		if(l^r) build(l,mid,ls),build(mid+1,r,rs);
	}
	void modify(int l,int r,int now,int A)
	{
		if(l>R||r<L) return;
		if(L<=l&&r<=R) return Tag(now,A);
		push_down(now);
		modify(l,mid,ls,A),modify(mid+1,r,rs,A);
		update(now);
	}
	ll query(int l,int r,int now)
	{
		if(l>R||r<L) return 0;
		if(L<=l&&r<=R) return tr[now];
		if(tag[now]) return 1ll*(min(R,r)-max(L,l)+1)*tag[now];
		return query(l,mid,ls)+query(mid+1,r,rs);
	}
}
ll ans[N];
int n,m,Q,l[N],r[N],op[N];
bool chk()
{
	for(int i=1;i<=m;i++) if(op[i]!=-1) return 0;
	return 1;
}
vector<pair<int,int>> v[N];
vector<int> q[N];
void work(int w)
{
	for(auto k:v[w]) q[k.first].push_back(k.second);
	ll cur=0;
	seg::build(1,n,1);
	for(int i=w;i<=m;i++)
	{
		L=l[i],R=r[i];
		if(op[i]==-1) cur+=seg::query(1,n,1);
		else seg::modify(1,n,1,op[i]);
		for(auto x:q[i]) ans[x]=cur;
		q[i].clear();
	}
}
int main()
{
	scanf("%d%d%d",&n,&m,&Q);
	for(int i=1;i<=m;i++)
	{
		scanf("%d%d%d",&op[i],&l[i],&r[i]);
		if(op[i]==2) op[i]=-1;
		else scanf("%d",&op[i]);
	}
	if(chk())
	{
		while(Q--) puts("0");
		return 0;
	}
	for(int i=1,l,r;i<=Q;i++)
	{
		scanf("%d%d",&l,&r);
		v[l].push_back({r,i});
	}
	for(int i=1;i<=m;i++)
		if(v[i].size()) work(i);
	for(int i=1;i<=Q;i++) printf("%lld\n",ans[i]);
}

详细

Test #1:

score: 0
Wrong Answer
time: 9ms
memory: 40400kb

input:

100 100 100
2 80 86
2 15 49
1 11 100 25
2 22 36
2 37 100
1 14 16 49
2 74 90
2 28 76
1 43 45 78
1 54 56 27
1 73 75 29
2 34 81
2 51 90
1 13 14 52
1 72 73 2
2 18 58
2 44 58
1 83 85 30
1 86 88 69
1 29 31 25
1 92 94 19
1 48 49 16
1 55 57 91
1 98 100 42
2 13 96
2 50 83
1 23 25 39
1 84 85 55
1 43 45 5
1 90...

output:

8086
22521
2809
8552
7993
25254
3358
0
1856
1340
78
172
17626
0
6163
2029
26998
1545
15839
3594
20003
27196
4664
6312
9637
14740
7801
19570
0
13050
22617
2310
2331
22042
923
125
12216
28259
788
30437
449
3028
0
28892
35372
35901
15650
15839
3364
613
6385
52721
14281
8086
16881
11317
1149
258
4906
18...

result:

wrong answer 2nd numbers differ - expected: '19253', found: '22521'

Test #2:

score: 0
Wrong Answer
time: 4ms
memory: 41192kb

input:

100 100 100
1 56 92 5
1 5 9 91
1 70 92 77
1 45 52 90
1 37 38 36
1 9 10 1
2 1 72
1 79 80 86
2 40 98
1 96 97 89
2 46 78
2 41 58
1 57 58 65
1 73 74 44
1 20 21 54
1 95 96 61
1 23 24 40
1 60 61 48
1 17 18 65
1 43 44 68
1 44 45 7
1 28 29 4
1 10 11 37
1 14 15 44
1 69 70 18
1 33 34 52
1 15 16 67
1 62 63 64
...

output:

0
736
5948
5139
0
0
5948
0
0
2806
11243
0
5976
0
0
172
1256
0
3122
0
0
1834
3890
0
172
2185
0
6470
0
0
8444
0
1723
0
6280
0
407
1081
0
3890
0
0
2648
5577
404
2806
407
14323
3560
0
3919
0
4949
5948
1834
8444
4261
0
736
1834
0
713
5941
6166
5665
0
0
514
0
2648
3122
1340
4214
172
0
0
7032
3036
2104
0
6...

result:

wrong answer 2nd numbers differ - expected: '700', found: '736'

Test #3:

score: 0
Wrong Answer
time: 1227ms
memory: 41324kb

input:

5000 5000 5000
1 4070 5000 3145
2 1139 3698
1 798 799 3999
1 2423 2424 2414
1 836 838 518
1 3605 3607 2831
1 525 526 2041
1 4734 4736 1862
2 2408 3821
1 1394 1395 1129
2 601 3026
2 728 4428
1 567 569 4843
2 4235 4835
1 3568 3569 1157
1 3043 3045 4342
1 1813 1815 1888
1 2992 2993 4810
1 1862 1864 112...

output:

242771904
32917413
48763875
1464820851
770380083
10265067
1342930651
2556564486
1493106351
1251036
389486849
158335751
548605888
1693694791
868791604
60774238
2696569
951992451
2166093121
12565140
22678708
489319571
5649606
187577111
88149625
79121146
790977975
40478648
7605917
1955454635
1187400307...

result:

wrong answer 1st numbers differ - expected: '234959455', found: '242771904'

Test #4:

score: 0
Wrong Answer
time: 1095ms
memory: 39608kb

input:

5000 5000 5000
1 3198 5000 2085
1 2688 2781 3934
1 663 664 1655
1 472 473 4369
1 822 823 75
2 798 2403
1 518 519 4434
1 4022 4023 3962
1 121 122 1996
1 568 569 2710
1 2908 2909 418
1 429 430 4757
1 1361 1362 4590
1 4439 4440 4849
1 3104 3105 2808
1 78 79 1549
1 2111 2112 2281
1 3405 3406 4240
1 2739...

output:

123564560
20069586
37670964
69466974
2528700
669990
20852754
65082022
76991540
123768606
69776781
881298
111695050
35321761
12173805
3270814
254471496
32899570
24668927
62808041
61122530
68629077
19063133
13995744
15556330
54401422
71046
89892354
534410
0
3466001
49561223
5812051
34943213
31749885
9...

result:

wrong answer 1st numbers differ - expected: '114655447', found: '123564560'

Test #5:

score: 0
Wrong Answer
time: 1140ms
memory: 41108kb

input:

4997 5000 4997
1 924 4997 4123
1 1508 1568 759
1 1148 1190 3389
1 908 952 122
1 4976 4997 4100
1 4578 4637 1736
1 2780 2821 3570
1 2830 2874 1796
1 351 391 1
1 762 801 3091
1 2060 2105 398
1 4572 4618 615
1 941 971 853
1 4395 4397 4934
1 4573 4574 4506
1 3697 3698 83
2 112 2024
1 310 311 1941
1 2116...

output:

144099079
149675263
326430761
3886529
35995144
308842296
1108034875
36292945
59112512
43661538
19704641
40332243
80126779
210601175
112221958
61696503
6872199
89179986
108537243
24164900
133116518
161195170
116142847
11331867
5098252
235591991
27908977
79888786
333674663
214784624
191324148
14790918...

result:

wrong answer 1st numbers differ - expected: '133792261', found: '144099079'

Test #6:

score: 0
Wrong Answer
time: 1289ms
memory: 39772kb

input:

4997 4999 4996
2 4368 4799
2 2119 4764
2 4434 4464
1 2035 4706 4296
1 519 522 2387
2 3 2084
1 4748 4755 461
2 2812 4626
1 4801 4805 2427
1 611 615 2155
2 772 2397
2 1443 2197
2 392 792
1 3032 3036 2776
2 3148 4757
1 3661 3678 3968
1 3901 3921 2378
1 143 164 531
1 3337 3360 3189
2 679 2911
1 1436 145...

output:

172478710
2421648679
960349296
2232299863
54663021
172011894
18544346
352225294
764264533
606011805
26174272
109080726
1342181775
521602111
1475368199
810700358
10910657
766936724
205641051
82721836
102103555
2334185639
6753446
18824
748787611
1061991799
92502424
366512748
1532042340
121519239
70166...

result:

wrong answer 1st numbers differ - expected: '170506488', found: '172478710'

Test #7:

score: 5
Accepted
time: 71ms
memory: 34236kb

input:

499998 499998 500000
2 45317 481911
2 205023 267850
2 229212 496395
2 311928 408362
2 60781 309919
2 5271 471569
2 428188 498422
2 92261 439291
2 169892 354633
2 154209 351949
2 39872 442239
2 17793 200874
2 111458 165313
2 35630 448969
2 144408 434923
2 150127 486605
2 87239 425125
2 221549 283735
...

output:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
...

result:

ok 500000 numbers

Test #8:

score: 5
Accepted
time: 73ms
memory: 33692kb

input:

499996 500000 499996
2 416226 432058
2 352324 435508
2 284349 418508
2 331919 481387
2 123642 260653
2 443789 449866
2 304455 480845
2 25402 269023
2 88509 334117
2 91159 399658
2 354630 412055
2 27378 126849
2 43994 304769
2 352338 413477
2 441505 499446
2 230203 287653
2 386 34219
2 77130 483544
2...

output:

0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
...

result:

ok 499996 numbers

Test #9:

score: 0
Wrong Answer
time: 387ms
memory: 71796kb

input:

499999 499997 499996
1 242721 499999 95404
2 46103 133768
2 374074 441419
1 24121 24525 460791
1 296358 334367 213389
1 333891 339996 192126
2 271641 289312
1 159292 235107 359363
2 281766 283959
2 68186 255669
2 112532 201134
2 281439 287449
2 265345 398433
1 495720 499897 85179
2 336233 383598
1 3...

output:

2556735782695355
5060358163666739
2552378503900916
648671085617255
4414288774150592
4201587563486532
3616389431218894
4857433401377018
3321938095454976
6298413631542586
6187113226315360
5459358621234187
5788183026278186
793668586441243
6273941502462617
6014105491078731
3726738372858364
4968981569606...

result:

wrong answer 1st numbers differ - expected: '2468271622976502', found: '2556735782695355'

Test #10:

score: 0
Wrong Answer
time: 349ms
memory: 70916kb

input:

499996 499998 499996
2 127334 135648
2 250092 494065
2 202618 237080
1 365995 485247 159366
1 461761 461763 167619
1 161295 165395 156081
2 118953 278863
1 31995 32188 13920
2 211226 376698
2 125014 312511
1 248692 248694 369316
2 23909 438451
1 90793 222688 109394
1 405548 405549 283104
2 54420 263...

output:

6308799892756408
3461440214805317
1906455621163919
5072395444145418
3280634811556608
3673211318743246
887949255848388
3369636129129057
4817185345289510
2272670407302347
4371346837371895
3705553160641975
3809381620149459
2908591914153769
3402359696890812
1710668940254990
5382588800875312
636706328305...

result:

wrong answer 1st numbers differ - expected: '6052992577626026', found: '6308799892756408'

Test #11:

score: 0
Wrong Answer
time: 364ms
memory: 71640kb

input:

499999 499996 500000
1 263967 499999 193060
1 473673 473677 256364
1 112817 112820 147747
2 47560 75007
1 19751 19754 272463
1 147343 147345 432368
1 385248 385251 111981
1 98114 98117 384182
1 186894 186898 304739
1 13283 13285 1641
1 127923 127925 168790
2 59949 123247
2 76677 91972
1 138037 13803...

output:

1070663830743463
1234530945782397
2089032968198891
1587369699949117
1482681764608977
1301576752155588
1102496056863625
586881968869240
1069116994072882
1693488617064355
2121367930261581
1988815208565053
1131176623277121
1853012759613276
1514050380088580
274267139271389
1389779351081292
7949773318648...

result:

wrong answer 1st numbers differ - expected: '990441926198121', found: '1070663830743463'

Test #12:

score: 0
Wrong Answer
time: 367ms
memory: 70204kb

input:

499999 499995 499997
1 163879 499999 440480
2 420164 470414
1 443882 499999 62525
1 313171 499999 294789
1 469407 469540 44668
2 25119 191405
2 172689 455667
2 110136 338451
2 218391 398188
1 486533 486654 93435
2 95706 256203
2 196989 304612
2 326480 401308
2 54460 198784
1 271793 271898 320340
2 9...

output:

13483494035737459
11398426976342968
1710323431303828
14905950556210528
11320532540622622
9771200964316713
12872492688266142
15816596787199146
12145348879216482
15023354421973265
7548547594122389
13094301346600063
17009962040320325
12961624473920785
16151199307033582
16413881270778597
136956606119263...

result:

wrong answer 1st numbers differ - expected: '9516852927305017', found: '13483494035737459'

Test #13:

score: 0
Time Limit Exceeded

input:

200000 200000 200000
2 31803 80740
2 112818 127167
1 131322 154428 90611
2 11014 192282
2 41925 115417
2 5816 159028
2 111819 126655
2 37293 172866
2 27835 145099
2 124446 162824
2 104521 118016
2 40376 127391
1 195318 195319 149596
2 41040 179839
2 61847 94626
2 69878 181705
2 28968 179132
2 132543...

output:


result:


Test #14:

score: 0
Time Limit Exceeded

input:

199995 199998 199998
1 159195 199995 13044
2 86976 157151
1 64762 102114 152625
1 61813 63647 178420
1 82889 85481 125381
1 51586 54321 77506
2 45182 109756
1 181575 184132 133556
2 28331 132281
2 17325 40861
2 42257 191103
2 147228 198059
2 75171 155696
1 139100 140799 154126
1 188327 190311 76827
...

output:


result:


Test #15:

score: 0
Time Limit Exceeded

input:

199999 199996 200000
1 179926 199999 32711
1 1042 1044 112146
2 26640 43359
1 178347 178351 169789
2 32064 164957
2 81951 117742
1 179853 179856 73377
2 66862 193241
2 10596 28181
2 49117 162750
1 13331 13333 43998
2 26996 197910
1 161366 161369 84391
2 127515 184183
1 66412 66416 97202
2 49708 5634...

output:


result:


Test #16:

score: 0
Time Limit Exceeded

input:

200000 200000 200000
1 59821 200000 173244
1 190307 190309 110936
1 112341 112342 4761
1 124738 124740 84834
1 3047 3049 102534
2 114052 180833
2 72832 109679
2 84797 91295
1 191583 191584 141834
1 185318 185320 87703
1 117000 117002 109533
1 80539 80540 105603
1 24207 24209 111543
1 83298 83299 140...

output:


result:


Test #17:

score: 0
Time Limit Exceeded

input:

500000 500000 500000
2 430331 460074
1 364723 500000 100669
1 250319 250342 82754
1 438542 441692 403146
1 463281 463283 433598
2 257762 468063
2 48944 155558
2 353640 481169
1 84674 84675 290827
2 146697 229831
2 468564 488452
2 5108 66751
1 23182 45112 201883
2 282890 447793
1 32871 33375 376198
1...

output:


result:


Test #18:

score: 0
Time Limit Exceeded

input:

500000 499995 499999
2 227886 411572
2 211683 333769
1 250096 500000 235662
1 426728 426927 304290
2 57626 245045
2 274989 390864
2 128937 178776
1 131741 131862 102941
1 98436 98438 22052
1 166478 166479 223278
1 450334 450336 468682
1 235946 235947 469845
1 472838 472839 386149
1 94197 94199 37254...

output:


result:


Test #19:

score: 0
Time Limit Exceeded

input:

500000 500000 500000
1 483553 500000 33628
1 469113 469115 99122
2 331771 461807
2 132277 227909
1 409018 409020 67790
2 239961 327023
2 71363 250145
2 194504 394975
2 112739 357223
2 29586 226312
1 365927 365929 56596
2 37108 464107
2 260079 467849
1 132248 132250 77986
2 192853 237448
2 361959 386...

output:


result:


Test #20:

score: 0
Time Limit Exceeded

input:

499999 499999 499996
2 212908 238055
1 460268 499999 317714
2 420753 465452
1 184130 194219 347230
1 24358 31202 484414
2 261874 280744
1 382916 389593 121902
2 998 230297
1 83691 94553 138191
2 357537 469176
1 478043 489289 9664
2 49390 163924
1 496313 499999 485644
2 307553 482205
1 148359 158827 ...

output:


result: