UOJ Logo

NOI.AC

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#211134#2407. 双端队列drdilyor114ms1216kbC++111.6kb2024-08-09 12:10:162024-08-09 12:55:25

answer

#include<bits/stdc++.h>
#define int long long
using namespace std;
void ts(){cout<<"IAKIOI\n";}
inline int read(){
	int n=0,f=1,ch=getchar();
	while(ch<'0'||ch>'9'){
		if(ch=='-')f=-1;
		ch=getchar();
	}
	while(ch>='0'&&ch<='9'){
		n=n*10+ch-'0';
		ch=getchar();
	}
	return n*f;
}
const int mod=998244353;
struct mint{
    int x;mint(int o=0){x=o;}mint&operator+=(mint a){return(x+=a.x)%=mod,*this;}mint&operator-=(mint a){return(x+=mod-a.x)%=mod,*this;}
    mint&operator*=(mint a){return(x=1ll*x*a.x%mod),*this;}mint&operator^=( int b){mint a=*this;x=1;while(b)(b&1)&&(*this*=a,1),a*=a,b>>=1;return*this;}
    mint&operator/=(mint a){return*this*=(a^=mod-2);}friend mint operator+(mint a,mint b){return a+=b;}friend mint operator-(mint a,mint b){return a-=b;}
    friend mint operator*(mint a,mint b){return a*=b;}friend mint operator/(mint a,mint b){return a/=b;}friend mint operator^(mint a,int b){return a^=b;}
    mint operator-(){return 0-*this;}bool operator==(const mint b)const{return x==b.x;}
};
signed main(){
	int t=read();
	if(t<=3000){
		deque<int> q;
		while(t--){
			int ty=read();
			if(ty==1){int x=read();q.push_front(x);}
			if(ty==2){int x=read();q.push_back(x);}
			if(ty==3){q.pop_front();}
			if(ty==4){q.pop_back();}
			if(ty==5||ty==6){
				int k=read(),c=read();
				if(ty==5){
					int res=0;
					for(int i=0;i<c&&i*k<(int)q.size();i++)res+=q[i*k];
					printf("%lld\n",res);
				}
				else{
					int res=0;
					for(int i=0;i<c&&i*k<(int)q.size();i++){
						res+=q[(int)q.size()-1-i*k];
					}
					printf("%lld\n",res);
				}
			}
		}
		return 0;
	}
	return 0;
}

Details

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

Subtask #1:

score: 11
Accepted

Test #1:

score: 11
Accepted
time: 0ms
memory: 1216kb

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

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

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

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

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

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
Wrong Answer

Test #7:

score: 16
Accepted
time: 0ms
memory: 1212kb

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

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

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

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

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

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
Wrong Answer
time: 0ms
memory: 1124kb

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:


result:

wrong answer 1st lines differ - expected: '-132828', found: ''

Subtask #3:

score: 0
Wrong Answer

Test #19:

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

input:

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

output:


result:

wrong answer 1st lines differ - expected: '474711', found: ''

Subtask #4:

score: 0
Wrong Answer

Test #24:

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

input:

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

output:


result:

wrong answer 1st lines differ - expected: '474711', found: ''

Subtask #5:

score: 0
Wrong Answer

Test #34:

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

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

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

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

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

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

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
Wrong Answer
time: 0ms
memory: 1124kb

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:


result:

wrong answer 1st lines differ - expected: '-132828', found: ''