結果

問題 No.973 余興
ユーザー pekempeypekempey
提出日時 2020-01-17 22:48:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,441 ms / 4,000 ms
コード長 1,576 bytes
コンパイル時間 1,706 ms
コンパイル使用メモリ 172,852 KB
実行使用メモリ 296,960 KB
最終ジャッジ日時 2024-06-25 23:07:07
合計ジャッジ時間 79,294 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,070 ms
296,960 KB
testcase_01 AC 2,087 ms
296,832 KB
testcase_02 AC 2,119 ms
296,832 KB
testcase_03 AC 2,136 ms
296,576 KB
testcase_04 AC 2,100 ms
296,832 KB
testcase_05 AC 2,118 ms
296,832 KB
testcase_06 AC 2,074 ms
296,832 KB
testcase_07 AC 2,253 ms
296,576 KB
testcase_08 AC 1,997 ms
295,552 KB
testcase_09 AC 2,048 ms
296,832 KB
testcase_10 AC 1,974 ms
285,312 KB
testcase_11 AC 750 ms
109,056 KB
testcase_12 AC 716 ms
109,184 KB
testcase_13 AC 735 ms
108,160 KB
testcase_14 AC 717 ms
108,288 KB
testcase_15 AC 49 ms
15,360 KB
testcase_16 AC 51 ms
15,616 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 40 ms
13,056 KB
testcase_19 AC 39 ms
13,056 KB
testcase_20 AC 27 ms
10,624 KB
testcase_21 AC 50 ms
15,232 KB
testcase_22 AC 50 ms
15,360 KB
testcase_23 AC 39 ms
13,056 KB
testcase_24 AC 37 ms
12,928 KB
testcase_25 AC 16 ms
7,936 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 61 ms
17,024 KB
testcase_28 AC 39 ms
13,056 KB
testcase_29 AC 39 ms
12,800 KB
testcase_30 AC 2,401 ms
296,832 KB
testcase_31 AC 2,366 ms
296,832 KB
testcase_32 AC 2,441 ms
296,832 KB
testcase_33 AC 2,418 ms
296,448 KB
testcase_34 AC 2,394 ms
295,552 KB
testcase_35 AC 2,416 ms
296,832 KB
testcase_36 AC 2,362 ms
289,024 KB
testcase_37 AC 2,385 ms
289,024 KB
testcase_38 AC 2,418 ms
295,936 KB
testcase_39 AC 2,394 ms
296,320 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,316 ms
296,832 KB
testcase_47 AC 2,334 ms
296,832 KB
testcase_48 AC 2,369 ms
296,832 KB
testcase_49 AC 2,092 ms
273,920 KB
testcase_50 AC 2,266 ms
294,528 KB
testcase_51 AC 2,288 ms
296,832 KB
testcase_52 AC 2,431 ms
296,960 KB
testcase_53 AC 2,392 ms
291,712 KB
testcase_54 AC 2,418 ms
296,832 KB
testcase_55 AC 2,396 ms
296,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
#define repr(i, n) for (int i = (n) - 1; i >= 0; i--)
#define range(a) a.begin(), a.end()

int main() {
  int N; cin >> N;
  ll X; cin >> X;
  vector<ll> A(N); rep(i, N) cin >> A[i];
  vector<ll> S(N + 1); rep(i, N) S[i + 1] = S[i] + A[i];
  vector<vector<int>> dp(N, vector<int>(N));
  vector<vector<int>> eplr(N, vector<int>(N));
  vector<vector<int>> eprl(N, vector<int>(N));
  for (int d = 1; d <= N - 1; d++) {
    for (int l = 0; l + d <= N - 1; l++) {
      int r = l + d;
      // dpl[l][r]...dpl[x][r] -> 0
      // dpr[l][y]...dpr[l][r] -> 0
      int x, y;
      {
        int lo = l + 1;
        int hi = r + 1;
        while (hi - lo > 1) {
          int mid = (lo + hi) / 2;
          if (S[mid] - S[l] <= X) {
            lo = mid;
          } else {
            hi = mid;
          }
        }
        x = lo;
      }
      {
        int lo = l - 1;
        int hi = r - 1;
        while (hi - lo > 1) {
          int mid = (lo + hi) / 2;
          if (S[r + 1] - S[mid + 1] <= X) {
            hi = mid;
          } else {
            lo = mid;
          }
        }
        y = hi;
      }
      if (eprl[r][l + 1] - eprl[r][x] + dp[x][r] != x - (l + 1) + 1) {
        dp[l][r] = 1;
      }
      if (eplr[l][r - 1] - eplr[l][y] + dp[l][y] != (r - 1) - y + 1) {
        dp[l][r] = 1;
      }
      eplr[l][r] = dp[l][r] + eplr[l][r - 1];
      eprl[r][l] = dp[l][r] + eprl[r][l + 1];
    }
  }
  cout << (dp[0][N - 1] ? "A" : "B") << endl;
}
0