UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#211019#2407. 双端队列Anthonyyan00ms0kbC++11962b2024-08-09 08:52:422024-08-09 12:31:16

answer

#include <bits/stdc++.h>
#pragma GCC optimize(2)

using namespace std;

typedef long long ll;
const int MAXT = 300010;
const int MAXK = 15;
const int MAXX = 351943;

int T, op, k, c, x;
deque<int> q;

int main(int, char const *[])
{
  ios::sync_with_stdio(false);
  cin.tie(NULL);
  cout.tie(NULL);
  cin >> T;
  while (T--)
  {
    cin >> op;
    if (op == 1)
    {
      cin >> x;
      q.push_front(x);
    }
    else if (op == 2)
    {
      cin >> x;
      q.push_back(x);
    }
    else if (op == 3)
      q.pop_front();
    else if (op == 4)
      q.pop_back();
    else if (op == 5)
    {
      cin >> k >> c;
      ll ans = 0;
      for (int i = 0; i < c; i++)
        ans += q[i * k];
      cout << ans << endl;
    }
    else
    {
      cin >> k >> c;
      ll ans = 0;
      for (int i = 0; i < c; i++)
        ans += q[q.size() - 1 - i * k];
      cout << ans << endl;
    }
  }
  return 0;
}

详细

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

Subtask #1:

score: 0
Runtime Error

Test #1:

score: 0
Runtime Error

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

result:


Subtask #2:

score: 0
Runtime Error

Test #7:

score: 0
Runtime Error

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

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:

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

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:

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

result:


Subtask #5:

score: 0
Runtime Error

Test #34:

score: 0
Runtime Error

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

result: