結果

問題 No.973 余興
ユーザー pekempeypekempey
提出日時 2020-01-17 22:28:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,219 bytes
コンパイル時間 1,872 ms
コンパイル使用メモリ 176,300 KB
実行使用メモリ 297,088 KB
最終ジャッジ日時 2024-06-25 21:59:19
合計ジャッジ時間 87,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,659 ms
297,088 KB
testcase_01 AC 2,566 ms
296,960 KB
testcase_02 AC 2,569 ms
296,832 KB
testcase_03 AC 2,554 ms
296,576 KB
testcase_04 AC 2,560 ms
296,960 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2,472 ms
285,312 KB
testcase_11 AC 825 ms
109,056 KB
testcase_12 AC 830 ms
109,056 KB
testcase_13 WA -
testcase_14 AC 811 ms
108,288 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 45 ms
10,880 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 80 ms
15,488 KB
testcase_23 AC 63 ms
13,056 KB
testcase_24 AC 62 ms
12,928 KB
testcase_25 AC 26 ms
7,808 KB
testcase_26 AC 44 ms
10,752 KB
testcase_27 AC 91 ms
17,152 KB
testcase_28 WA -
testcase_29 AC 61 ms
12,800 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 2,694 ms
295,680 KB
testcase_35 AC 2,711 ms
297,088 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 2,679 ms
295,936 KB
testcase_39 WA -
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 WA -
testcase_44 AC 2 ms
5,376 KB
testcase_45 WA -
testcase_46 AC 1,943 ms
296,960 KB
testcase_47 WA -
testcase_48 AC 1,969 ms
296,960 KB
testcase_49 WA -
testcase_50 AC 1,956 ms
294,656 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 2,771 ms
291,840 KB
testcase_54 AC 2,835 ms
297,088 KB
testcase_55 AC 2,830 ms
296,960 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<ll> R(N + 1); repr(i, N) R[i] = R[i + 1] + 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 = upper_bound(range(S), X + S[l]) - S.begin() - 2;
      int y = R.rend() - upper_bound(R.rbegin(), R.rend(), X + R[r + 1]) + 1;
      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