結果

問題 No.973 余興
ユーザー utouto97utouto97
提出日時 2020-01-20 20:54:37
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2,401 ms / 4,000 ms
コード長 2,327 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 164,352 KB
実行使用メモリ 394,752 KB
最終ジャッジ日時 2024-07-02 23:18:26
合計ジャッジ時間 76,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,140 ms
394,624 KB
testcase_01 AC 2,117 ms
394,624 KB
testcase_02 AC 2,129 ms
394,496 KB
testcase_03 AC 2,142 ms
394,368 KB
testcase_04 AC 2,152 ms
394,624 KB
testcase_05 AC 2,166 ms
394,752 KB
testcase_06 AC 2,151 ms
394,368 KB
testcase_07 AC 2,157 ms
394,240 KB
testcase_08 AC 2,153 ms
392,960 KB
testcase_09 AC 2,050 ms
394,624 KB
testcase_10 AC 1,986 ms
379,264 KB
testcase_11 AC 629 ms
144,256 KB
testcase_12 AC 657 ms
144,384 KB
testcase_13 AC 648 ms
143,104 KB
testcase_14 AC 645 ms
143,104 KB
testcase_15 AC 50 ms
19,072 KB
testcase_16 AC 50 ms
19,200 KB
testcase_17 AC 29 ms
12,928 KB
testcase_18 AC 41 ms
16,000 KB
testcase_19 AC 40 ms
15,872 KB
testcase_20 AC 29 ms
12,800 KB
testcase_21 AC 49 ms
19,072 KB
testcase_22 AC 49 ms
19,072 KB
testcase_23 AC 39 ms
15,872 KB
testcase_24 AC 41 ms
15,872 KB
testcase_25 AC 18 ms
8,832 KB
testcase_26 AC 29 ms
12,800 KB
testcase_27 AC 60 ms
21,632 KB
testcase_28 AC 39 ms
15,872 KB
testcase_29 AC 39 ms
15,744 KB
testcase_30 AC 2,225 ms
394,624 KB
testcase_31 AC 2,203 ms
394,752 KB
testcase_32 AC 2,213 ms
394,624 KB
testcase_33 AC 2,183 ms
394,368 KB
testcase_34 AC 2,401 ms
392,832 KB
testcase_35 AC 2,216 ms
394,624 KB
testcase_36 AC 2,175 ms
384,256 KB
testcase_37 AC 2,179 ms
384,128 KB
testcase_38 AC 2,233 ms
393,344 KB
testcase_39 AC 2,205 ms
393,728 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2,264 ms
394,624 KB
testcase_47 AC 2,183 ms
394,368 KB
testcase_48 AC 2,298 ms
394,752 KB
testcase_49 AC 1,973 ms
364,032 KB
testcase_50 AC 2,172 ms
391,552 KB
testcase_51 AC 2,186 ms
394,624 KB
testcase_52 AC 2,226 ms
394,752 KB
testcase_53 AC 2,086 ms
387,712 KB
testcase_54 AC 2,174 ms
394,752 KB
testcase_55 AC 2,169 ms
394,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define int long long
#define rep(i,l,r) for(int i=(int)(l);i<(int)(r);i++)
#define all(x) (x).begin(),(x).end()
#define sz(x) ((int)x.size())
template<class T>bool chmax(T &a,T b){if(a<b){a=b;return 1;}return 0;}
template<class T>bool chmin(T &a,T b){if(a>b){a=b;return 1;}return 0;}

/*
 */

using vi = vector<int>;
using vvi = vector<vi>;
using P = pair<int,int>;

template<class T>
class BinaryIndexedTree
{
public:
  int n;
  vector<T> bit;

  BinaryIndexedTree():n(-1){}

  BinaryIndexedTree(int n_, T d):n(n_),bit(n_+1,d){}

  T sum(int i)
  {
    T s = 0;
    while(i > 0){
      s += bit[i];
      i -= i&-i;
    }
    return s;
  }

  void add(int i, T x)
  {
    if(i == 0) return;
    while(i <= n){
      bit[i] += x;
      i += i&-i;
    }
  }

  T sum0(int i)
  {
    return sum(i+1);
  }

  void add0(int i, T x)
  {
    add(i+1, x);
  }

  T query(int l, int r)
  {
    return sum(r-1)-sum(l-1);
  }

  T query0(int l, int r)
  {
    return sum(r)-sum(l);
  }
};

signed main() {
  int n, x;
  cin >> n >> x;
  
  vi a(n);
  rep(i, 0, n) cin >> a[i];

  vi lr(n+1), rl(n+1);
  int r = 0, sum = 0;
  rep(l, 0, n){
    while(r < n and sum + a[r] <= x){
      sum += a[r];
      r++;
      rl[r] = l;
    }

    lr[l] = r;

    if(l == r) r++;
    else sum -= a[l];
  }

//  rep(i, 0, n+1) cout << lr[i] << " ";
//  cout << endl;
//  rep(i, 0, n+1) cout << rl[i] << " ";
//  cout << endl;

  vector<BinaryIndexedTree<int>> bitl(n+1, BinaryIndexedTree<int>(n+1, 0));
  vector<BinaryIndexedTree<int>> bitr(n+1, BinaryIndexedTree<int>(n+1, 0));

  rep(len, 1, n+1){
    rep(left, 0, n-len+1){
      int right = left+len;
      bool lose = true;

      int s = max(left, rl[right]);
      if(bitl[left].query0(s, right)) lose = false;
      int t = min(right, lr[left]+1);
      if(bitr[right].query0(left, t)) lose = false;

      if(lose){
        bitl[left].add0(right, 1);
        bitr[right].add0(left, 1);
      }
    }
  }

  if(bitl[0].query0(n, n+1)) cout << "B" << endl;
  else cout << "A" << endl;

//  rep(i, 0, n){
//    rep(j, 1, n+1) {
//      cout << bitl[i].query0(j, j+1) << " ";
//    }
//    cout << endl;
//  }
//  rep(i, 0, n){
//    rep(j, 1, n+1) {
//      cout << bitr[i].query0(j, j+1) << " ";
//    }
//    cout << endl;
//  }

  return 0;
}

0