結果

問題 No.973 余興
ユーザー utouto97utouto97
提出日時 2020-01-19 17:16:24
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,550 bytes
コンパイル時間 1,527 ms
コンパイル使用メモリ 164,924 KB
実行使用メモリ 198,912 KB
最終ジャッジ日時 2024-07-02 22:01:09
合計ジャッジ時間 9,028 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
198,912 KB
testcase_01 AC 188 ms
198,912 KB
testcase_02 AC 188 ms
198,784 KB
testcase_03 AC 188 ms
198,784 KB
testcase_04 AC 185 ms
198,912 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 184 ms
191,232 KB
testcase_11 AC 67 ms
73,728 KB
testcase_12 AC 65 ms
73,600 KB
testcase_13 WA -
testcase_14 AC 63 ms
73,088 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 5 ms
7,936 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 12 ms
11,008 KB
testcase_23 AC 7 ms
9,600 KB
testcase_24 AC 7 ms
9,472 KB
testcase_25 AC 4 ms
6,940 KB
testcase_26 AC 8 ms
7,936 KB
testcase_27 AC 11 ms
12,288 KB
testcase_28 WA -
testcase_29 AC 6 ms
9,344 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 200 ms
198,016 KB
testcase_35 AC 201 ms
198,912 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 188 ms
198,144 KB
testcase_39 WA -
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 WA -
testcase_44 AC 1 ms
6,940 KB
testcase_45 WA -
testcase_46 AC 184 ms
198,912 KB
testcase_47 WA -
testcase_48 AC 195 ms
198,912 KB
testcase_49 WA -
testcase_50 AC 187 ms
197,248 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 183 ms
195,328 KB
testcase_54 AC 187 ms
198,784 KB
testcase_55 AC 187 ms
198,656 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>;

signed main() {
  int n, x;
  cin >> n >> x;

  vi a(n);
  rep(i, 0, n) cin >> a[i];

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

      lr[l] = r-1;

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

  {
    int l = n-1, sum = 0;
    for(int r = n-1; r >= 0; r--){
      while(l >= 0 and sum + a[l] <= x){
        sum += a[l];
        l--;
      }

      rl[r] = l+1;

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

  vvi dp(n+1, vi(n, 1)); // dp[len][left]

  rep(len, 2, n+1){
    vi sdp(n+1);
    rep(i, 0, n) sdp[i+1] = sdp[i] + dp[len-1][i];

    rep(left, 0, n){
      if(left+len-1 >= n) break;

      int l = left, r = left+len-1;
      int s = lr[l], t = rl[r];
      if(sdp[s+1]-sdp[l] > 0){
        dp[len][left] = 0;
      }
      if(sdp[r+1]-sdp[t] > 0){
        dp[len][left] = 0;
      }
    }
  }

//  rep(len, 0, n+1) {
//    rep(left, 0, n) {
//      cout << dp[len][left] << " ";
//    }
//    cout << endl;
//  }

  if(dp[n][0]) cout << "B" << endl;
  else cout << "A" << endl;

  return 0;
}

0