ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#211040 | #2407. 双端队列 | 18112606231 | 11 | 15ms | 1264kb | C++11 | 1.6kb | 2024-08-09 09:26:25 | 2024-08-09 12:33:06 |
answer
#include <bits/stdc++.h>
#define int long long
using namespace std;
int t,op,x,c,a[3001];
deque<int> q;
signed main() {
scanf("%lld",&t);
while(t--)
{
scanf("%lld",&op);
if(op==1)
{
scanf("%lld",&x);
q.push_front(x);
}
else if(op==2)
{
scanf("%lld",&x);
q.push_back(x);
}
else if(op==3)
{
q.pop_front();
}
else if(op==4)
{
q.pop_back();
}
else if(op==5)
{
scanf("%lld %lld",&x,&c);
int ans=0,cnt=0,siz=q.size();
for(int i=0;i<min(siz,x*c);i++)
{
if(i%x==0)
ans+=q.front();
a[++cnt]=q.front();
//cout<<cnt<<' '<<q.front()<<' '<<min((int)q.size(),x*c)<<endl;
q.pop_front();
}
printf("%lld\n",ans);
for(int i=cnt;i>=1;i--)
{
q.push_front(a[i]);
}
}
else
{
scanf("%lld %lld",&x,&c);
int ans=0,cnt=0,siz=q.size();
for(int i=0;i<min(siz,x*c);i++)
{
if(i%x==0)
{
ans+=q.back();
}
a[++cnt]=q.back();
q.pop_back();
}
printf("%lld\n",ans);
for(int i=cnt;i>=1;i--)
{
q.push_back(a[i]);
}
}
}
return 0;
}
详细
小提示:点击横条可展开更详细的信息
Subtask #1:
score: 11
Accepted
Test #1:
score: 11
Accepted
time: 2ms
memory: 1264kb
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: 2ms
memory: 1260kb
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: 2ms
memory: 1256kb
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: 0ms
memory: 1256kb
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: 1256kb
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: 1256kb
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
Runtime Error
Test #7:
score: 16
Accepted
time: 4ms
memory: 1260kb
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: 1264kb
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: 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: 0ms
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: 1256kb
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: 0ms
memory: 1256kb
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
Runtime Error
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:
Subtask #3:
score: 0
Runtime Error
Test #19:
score: 0
Runtime Error
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:
Subtask #4:
score: 0
Runtime Error
Test #24:
score: 0
Runtime Error
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:
Subtask #5:
score: 0
Runtime Error
Test #34:
score: 31
Accepted
time: 3ms
memory: 1260kb
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: 1ms
memory: 1260kb
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: 1ms
memory: 1256kb
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: 1256kb
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: 1256kb
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: 1256kb
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
Runtime Error
input:
351493 2 30700 2 97140 2 192604 2 -23754 2 271281 2 -253753 2 260860 2 63425 2 -301042 2 192887 2 25...