結果

問題 No.973 余興
ユーザー risujirohrisujiroh
提出日時 2020-01-17 22:19:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 669 ms / 4,000 ms
コード長 886 bytes
コンパイル時間 1,882 ms
コンパイル使用メモリ 171,448 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-25 21:07:58
合計ジャッジ時間 17,028 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 250 ms
9,472 KB
testcase_01 AC 248 ms
9,344 KB
testcase_02 AC 249 ms
9,344 KB
testcase_03 AC 247 ms
9,344 KB
testcase_04 AC 255 ms
9,472 KB
testcase_05 AC 252 ms
9,472 KB
testcase_06 AC 255 ms
9,344 KB
testcase_07 AC 254 ms
9,472 KB
testcase_08 AC 250 ms
9,472 KB
testcase_09 AC 252 ms
9,344 KB
testcase_10 AC 246 ms
9,344 KB
testcase_11 AC 125 ms
6,912 KB
testcase_12 AC 123 ms
6,912 KB
testcase_13 AC 124 ms
6,784 KB
testcase_14 AC 125 ms
6,912 KB
testcase_15 AC 16 ms
5,376 KB
testcase_16 AC 17 ms
5,376 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 13 ms
5,376 KB
testcase_19 AC 13 ms
5,376 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 15 ms
5,376 KB
testcase_22 AC 15 ms
5,376 KB
testcase_23 AC 13 ms
5,376 KB
testcase_24 AC 14 ms
5,376 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 11 ms
5,376 KB
testcase_27 AC 19 ms
5,376 KB
testcase_28 AC 14 ms
5,376 KB
testcase_29 AC 13 ms
5,376 KB
testcase_30 AC 509 ms
9,472 KB
testcase_31 AC 509 ms
9,344 KB
testcase_32 AC 521 ms
9,600 KB
testcase_33 AC 519 ms
9,472 KB
testcase_34 AC 516 ms
9,344 KB
testcase_35 AC 522 ms
9,472 KB
testcase_36 AC 506 ms
9,344 KB
testcase_37 AC 509 ms
9,344 KB
testcase_38 AC 521 ms
9,344 KB
testcase_39 AC 518 ms
9,472 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 1 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 669 ms
9,472 KB
testcase_47 AC 663 ms
9,472 KB
testcase_48 AC 664 ms
9,600 KB
testcase_49 AC 585 ms
9,088 KB
testcase_50 AC 665 ms
9,344 KB
testcase_51 AC 660 ms
9,344 KB
testcase_52 AC 347 ms
9,472 KB
testcase_53 AC 346 ms
9,344 KB
testcase_54 AC 348 ms
9,472 KB
testcase_55 AC 350 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int n, x;
  cin >> n >> x;
  vector<int> a(n);
  for (auto&& e : a) {
    cin >> e;
  }
  vector<int> mr(n);
  for (int l = 0; l < n; ++l) {
    int r = l, s = 0;
    while (r < n and s + a[r] <= x) {
      s += a[r++];
    }
    mr[l] = r;
  }
  vector<int> ml(n + 1);
  for (int r = n; r; --r) {
    int l = r, s = 0;
    while (l and s + a[l - 1] <= x) {
      s += a[--l];
    }
    ml[r] = l;
  }
  vector<bitset<5001>> lr(n + 1), rl(n + 1);
  for (int r = 1; r <= n; ++r) {
    for (int l = r; l--; ) {
      lr[l][r] = rl[r][l] = 1;
      if ((int)rl[r]._Find_next(l) <= mr[l]) {
        lr[l][r] = rl[r][l] = 0;
      }
      if ((int)lr[l]._Find_next(ml[r] - 1) < r) {
        lr[l][r] = rl[r][l] = 0;
      }
    }
  }
  cout << (char)('A' + lr[0][n]) << '\n';
}
0