UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#211089#2407. 双端队列_Alexande_00ms0kbC++111.9kb2024-08-09 11:07:142024-08-09 12:45:44

answer

#include <bits/stdc++.h>

using namespace std;

#define int long long
#define fir first
#define sec second
#define mkp make_pair 
#define pb push_back
#define lep( i, l, r ) for ( int i = ( l ); i <= ( r ); ++ i )
#define rep( i, r, l ) for ( int i = ( r ); i >= ( l ); -- i )

typedef long long ll;
typedef long double ld;
typedef pair < int, int > pii;

char _c; bool _f; template < class type > inline void read ( type &x ) {
	_f = 0, x = 0;
	while ( _c = getchar (), !isdigit ( _c ) ) if ( _c == '-' ) _f = 1;
	while ( isdigit ( _c ) ) x = x * 10 + _c - '0', _c = getchar (); if ( _f ) { x = -x; }
}

template < class type > inline void chkmin ( type &x, type y ) { x = ( x <= y ? x : y ); }
template < class type > inline void chkmax ( type &x, type y ) { x = ( x >= y ? x : y ); }

const int N = 3005;

int n;
deque < int > q;

void Solve () {
  ios :: sync_with_stdio ( false );
  cin.tie ( 0 ), cout.tie ( 0 );
  cin >> n;
  while ( n -- ) {
    int op;
    cin >> op;
    if ( op == 1 ) {
      int x;
      cin >> x;
      q.push_front ( x );
    }
    else if ( op == 2 ) {
      int x;
      cin >> x;
      q.push_back ( x );
    }
    else if ( op == 3 ) {
      q.pop_front ();
    }
    else if ( op == 4 ) {
      q.pop_back ();
    }
    else if ( op == 5 ) {
      int k, c;
      cin >> k >> c;
      int ans = 0;
      for ( int i = 0, j = 1; i < q.size (), j <= c; i += k, j ++ ) {
        ans += q[i];
      }
      cout << ans << '\n';
    }
    else {
      int k, c;
      cin >> k >> c;
      int ans = 0;
      for ( int i = q.size () - 1, j = 1; i >= 0, j <= c; i -= k, j ++ ) {
        ans += q[i];
      }
      cout << ans << '\n';
    }
  }
}

signed main () {
#ifdef judge
  freopen ( "Code.in", "r", stdin );
  freopen ( "Code.out", "w", stdout );
  freopen ( "Code.err", "w", stderr );
#endif
  Solve ();
	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:


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:


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


result: