UOJ Logo

NOI.AC

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#211066#2407. 双端队列three_zero3000ms1272kbC++111.4kb2024-08-09 10:04:372024-08-09 12:41:45

answer

#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int N=3e6+2;
struct node{
	int ft,pt,x;	
};
node nd[N];
int T;
int op,u;
int ttop=0,ttback=1;
int cnt=1,x,sc,k,c,idx;
ll sum,cmt,td;
int main(){
	ios::sync_with_stdio(0);
	cin.tie(0);
	cin>>T;
	nd[ttop].ft=-1;
	nd[ttop].pt=ttback;
	nd[ttback].ft=ttop;
	nd[ttback].pt=-1;
	while(T--){
		cin>>op;
		if(op==1){
			cin>>x;
			cnt++;
			nd[cnt].x=x;
			nd[cnt].ft=ttop;
			nd[cnt].pt=nd[ttop].pt;
			nd[nd[ttop].pt].ft=cnt;
			nd[ttop].pt=cnt;
		}
		if(op==2){
			cin>>x;
			cnt++;
			nd[cnt].x=x;
			nd[cnt].ft=nd[ttback].ft;
			nd[cnt].pt=ttback;
			nd[nd[ttback].ft].pt=cnt;
			nd[ttback].ft=cnt;
		}
		if(op==3){
			sc=nd[ttop].pt;
			nd[nd[sc].pt].ft=ttop;
			nd[ttop].pt=nd[sc].pt;
		}
		if(op==4){
			sc=nd[ttback].ft;
			nd[nd[sc].ft].pt=ttback;
			nd[ttback].ft=nd[sc].ft;
		}
		if(op==5){
			//从前到后
			cin>>k>>c;
			idx=nd[ttop].pt;
			sum=0,cmt=0,td=0;
			while(idx!=ttback){
				cmt++;
				if(cmt%k==1){
					sum+=nd[idx].x;
					td++;
					if(td==c)break;
				}
				idx=nd[idx].pt; 
			}
			cout<<sum<<'\n';
		}
		if(op==6){
			//从后到前
			cin>>k>>c;
			idx=nd[ttback].ft;
			sum=0,cmt=0,td=0;
			while(idx!=ttop){
				cmt++;
				if(cmt%k==1){
					sum+=nd[idx].x;
					td++;
					if(td==c)break;
				}
				idx=nd[idx].ft; 
			}
			cout<<sum<<'\n';
		}
	}
	return 0;
}

Details

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

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 1268kb

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
0
907290
84617
-501772
-1601553
-1056004
112539
-14588...

result:

wrong answer 7th lines differ - expected: '-2505874', found: '0'

Subtask #2:

score: 0
Wrong Answer

Test #7:

score: 0
Wrong Answer
time: 0ms
memory: 1272kb

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
0
907290
84617
-501772
-1601553
-1056004
112539
-14588...

result:

wrong answer 7th lines differ - expected: '-2505874', found: '0'

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:

0
-346102
128379
-193118
-93743
-265084
313689
-18092
-94553
892922
28562
96170
-454664
0
-83180
158...

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:

0
-346102
128379
-193118
-93743
-265084
313689
-18092
-94553
892922
28562
96170
-454664
0
-83180
158...

result:


Subtask #5:

score: 0
Wrong Answer

Test #34:

score: 0
Wrong Answer
time: 0ms
memory: 1268kb

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
0
907290
84617
-501772
-1601553
-1056004
112539
-14588...

result:

wrong answer 7th lines differ - expected: '-2505874', found: '0'