UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#211135#2407. 双端队列YuanWeize1126ms1252kbC++638b2024-08-09 12:15:072024-08-09 12:55:33

answer

#include<bits/stdc++.h>
#define ll long long
using namespace std;

deque <int> d;

int main(){
	int t;
	cin>>t;
	for(;t--;){
		int op;
		cin>>op;
		if(op==1){
			int x;
			cin>>x;
			d.push_front(x);
		}
		if(op==2){
			int x;
			cin>>x;
			d.push_back(x);
		}
		if(op==3)d.pop_front();
		if(op==4)d.pop_back();
		if(op==5){
			int k,c;
			cin>>k>>c;
			ll ans=0;
			for(int i=0;i*k<d.size()&&i<=c-1;i++)ans+=d[i*k];
			cout<<ans<<endl;
		}
		if(op==6){
			int k,c;
			cin>>k>>c;
			ll ans=0;
			for(int i=0;i*k<d.size() && i<=c-1;i++)ans+=d[d.size()-1-i*k];
			cout<<ans<<endl;
		}
	}
	return 0;
}

详细

小提示:点击横条可展开更详细的信息

Subtask #1:

score: 11
Accepted

Test #1:

score: 11
Accepted
time: 2ms
memory: 1248kb

input:

3000
2 -219498
2 -293012
2 340429
2 282883
2 17839
2 300008
2 -275152
2 -328138
2 337993
2 -149230
2...

output:

-529420
308873
-346656
-375516
-378742
243014
-2505874
907290
84617
-501772
-1601553
-1056004
112539...

result:

ok 213 lines

Test #2:

score: 0
Accepted
time: 0ms
memory: 1252kb

input:

3000
6 8 1
2 58786
2 -84977
2 129564
2 -330887
2 -311982
2 -7146
2 -148740
2 -300250
2 232985
2 3179...

output:

0
-282257
58786
-19835
329884
-152358
1681839
-460403
104320
776811
801627
60401
230071
88464
-19985...

result:

ok 228 lines

Test #3:

score: 0
Accepted
time: 0ms
memory: 1248kb

input:

3000
1 215822
1 171040
1 226169
1 26739
4
1 185368
1 -10112
1 -1737
1 130697
1 68004
1 43591
4
5 5 3...

output:

228959
187082
-91148
-439993
261733
-100318
175284
517015
236030
284075
403830
-72339
324233
578959
...

result:

ok 220 lines

Test #4:

score: 0
Accepted
time: 2ms
memory: 1248kb

input:

3000
1 -307707
5 8 1
1 -304370
1 -219623
1 -134160
1 -132201
4
4
1 -41278
1 44317
1 -165751
4
1 3336...

output:

-307707
81937
34424
183227
94915
-128971
-145023
-196547
-21813
257186
294135
1233309
-243701
88394
...

result:

ok 190 lines

Test #5:

score: 0
Accepted
time: 3ms
memory: 1252kb

input:

3000
2 129888
2 -37535
2 -263788
2 -201324
2 -253116
2 -66187
2 -332613
6 15 1
2 314953
2 -29219
3
2...

output:

-332613
-201324
-81278
314953
-205703
194751
-296765
159811
-452389
337751
173086
373732
141101
1178...

result:

ok 217 lines

Test #6:

score: 0
Accepted
time: 0ms
memory: 1252kb

input:

3000
2 276577
2 317056
2 -124108
3
2 -327284
2 -72611
3
2 129759
2 68809
2 348432
2 152042
2 -266989...

output:

-643554
-327284
-525557
245608
-296073
-317425
150207
118939
-77907
-250488
93061
86951
350411
-2897...

result:

ok 200 lines

Subtask #2:

score: 0
Time Limit Exceeded

Test #7:

score: 16
Accepted
time: 3ms
memory: 1252kb

input:

3000
2 -219498
2 -293012
2 340429
2 282883
2 17839
2 300008
2 -275152
2 -328138
2 337993
2 -149230
2...

output:

-529420
308873
-346656
-375516
-378742
243014
-2505874
907290
84617
-501772
-1601553
-1056004
112539...

result:

ok 213 lines

Test #8:

score: 0
Accepted
time: 0ms
memory: 1248kb

input:

3000
6 8 1
2 58786
2 -84977
2 129564
2 -330887
2 -311982
2 -7146
2 -148740
2 -300250
2 232985
2 3179...

output:

0
-282257
58786
-19835
329884
-152358
1681839
-460403
104320
776811
801627
60401
230071
88464
-19985...

result:

ok 228 lines

Test #9:

score: 0
Accepted
time: 2ms
memory: 1252kb

input:

3000
1 215822
1 171040
1 226169
1 26739
4
1 185368
1 -10112
1 -1737
1 130697
1 68004
1 43591
4
5 5 3...

output:

228959
187082
-91148
-439993
261733
-100318
175284
517015
236030
284075
403830
-72339
324233
578959
...

result:

ok 220 lines

Test #10:

score: 0
Accepted
time: 1ms
memory: 1252kb

input:

3000
1 -307707
5 8 1
1 -304370
1 -219623
1 -134160
1 -132201
4
4
1 -41278
1 44317
1 -165751
4
1 3336...

output:

-307707
81937
34424
183227
94915
-128971
-145023
-196547
-21813
257186
294135
1233309
-243701
88394
...

result:

ok 190 lines

Test #11:

score: 0
Accepted
time: 0ms
memory: 1248kb

input:

3000
2 129888
2 -37535
2 -263788
2 -201324
2 -253116
2 -66187
2 -332613
6 15 1
2 314953
2 -29219
3
2...

output:

-332613
-201324
-81278
314953
-205703
194751
-296765
159811
-452389
337751
173086
373732
141101
1178...

result:

ok 217 lines

Test #12:

score: 0
Accepted
time: 1ms
memory: 1248kb

input:

3000
2 276577
2 317056
2 -124108
3
2 -327284
2 -72611
3
2 129759
2 68809
2 348432
2 152042
2 -266989...

output:

-643554
-327284
-525557
245608
-296073
-317425
150207
118939
-77907
-250488
93061
86951
350411
-2897...

result:

ok 200 lines

Test #13:

score: -16
Time Limit Exceeded

input:

351493
2 30700
2 97140
2 192604
2 -23754
2 271281
2 -253753
2 260860
2 63425
2 -301042
2 192887
2 25...

output:

-132828
137348
-11294
258928
1317204
209910
-441868
-147700
-364841
368483
347448
657793
1244669
186...

result:


Subtask #3:

score: 0
Time Limit Exceeded

Test #19:

score: 0
Time Limit Exceeded

input:

3000000
1 109596
1 18831
2 89913
1 -164180
2 -256425
2 179608
2 -41750
1 245023
1 185637
1 79804
2 -...

output:

474711
-346102
128379
-193118
-93743
-265084
313689
-18092
-94553
892922
28562
96170
-454664
-270538...

result:


Subtask #4:

score: 0
Time Limit Exceeded

Test #24:

score: 0
Time Limit Exceeded

input:

3000000
1 109596
1 18831
2 89913
1 -164180
2 -256425
2 179608
2 -41750
1 245023
1 185637
1 79804
2 -...

output:

474711
-346102
128379
-193118
-93743
-265084
313689
-18092
-94553
892922
28562
96170
-454664
-270538...

result:


Subtask #5:

score: 0
Time Limit Exceeded

Test #34:

score: 31
Accepted
time: 0ms
memory: 1252kb

input:

3000
2 -219498
2 -293012
2 340429
2 282883
2 17839
2 300008
2 -275152
2 -328138
2 337993
2 -149230
2...

output:

-529420
308873
-346656
-375516
-378742
243014
-2505874
907290
84617
-501772
-1601553
-1056004
112539...

result:

ok 213 lines

Test #35:

score: 0
Accepted
time: 0ms
memory: 1248kb

input:

3000
6 8 1
2 58786
2 -84977
2 129564
2 -330887
2 -311982
2 -7146
2 -148740
2 -300250
2 232985
2 3179...

output:

0
-282257
58786
-19835
329884
-152358
1681839
-460403
104320
776811
801627
60401
230071
88464
-19985...

result:

ok 228 lines

Test #36:

score: 0
Accepted
time: 0ms
memory: 1252kb

input:

3000
1 215822
1 171040
1 226169
1 26739
4
1 185368
1 -10112
1 -1737
1 130697
1 68004
1 43591
4
5 5 3...

output:

228959
187082
-91148
-439993
261733
-100318
175284
517015
236030
284075
403830
-72339
324233
578959
...

result:

ok 220 lines

Test #37:

score: 0
Accepted
time: 4ms
memory: 1252kb

input:

3000
1 -307707
5 8 1
1 -304370
1 -219623
1 -134160
1 -132201
4
4
1 -41278
1 44317
1 -165751
4
1 3336...

output:

-307707
81937
34424
183227
94915
-128971
-145023
-196547
-21813
257186
294135
1233309
-243701
88394
...

result:

ok 190 lines

Test #38:

score: 0
Accepted
time: 3ms
memory: 1252kb

input:

3000
2 129888
2 -37535
2 -263788
2 -201324
2 -253116
2 -66187
2 -332613
6 15 1
2 314953
2 -29219
3
2...

output:

-332613
-201324
-81278
314953
-205703
194751
-296765
159811
-452389
337751
173086
373732
141101
1178...

result:

ok 217 lines

Test #39:

score: 0
Accepted
time: 5ms
memory: 1252kb

input:

3000
2 276577
2 317056
2 -124108
3
2 -327284
2 -72611
3
2 129759
2 68809
2 348432
2 152042
2 -266989...

output:

-643554
-327284
-525557
245608
-296073
-317425
150207
118939
-77907
-250488
93061
86951
350411
-2897...

result:

ok 200 lines

Test #40:

score: -31
Time Limit Exceeded

input:

351493
2 30700
2 97140
2 192604
2 -23754
2 271281
2 -253753
2 260860
2 63425
2 -301042
2 192887
2 25...

output:

-132828
137348
-11294
258928
1317204
209910
-441868
-147700
-364841
368483
347448
657793
1244669
186...

result: