結果

問題 No.973 余興
ユーザー 👑 emthrmemthrm
提出日時 2020-01-18 06:40:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 895 ms / 4,000 ms
コード長 2,301 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 206,300 KB
実行使用メモリ 199,168 KB
最終ジャッジ日時 2024-06-26 20:48:04
合計ジャッジ時間 32,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 766 ms
199,040 KB
testcase_01 AC 771 ms
199,040 KB
testcase_02 AC 761 ms
199,040 KB
testcase_03 AC 766 ms
198,656 KB
testcase_04 AC 758 ms
198,912 KB
testcase_05 AC 773 ms
199,040 KB
testcase_06 AC 748 ms
198,912 KB
testcase_07 AC 755 ms
198,784 KB
testcase_08 AC 756 ms
198,144 KB
testcase_09 AC 760 ms
199,040 KB
testcase_10 AC 747 ms
191,232 KB
testcase_11 AC 235 ms
73,856 KB
testcase_12 AC 222 ms
73,856 KB
testcase_13 AC 226 ms
73,216 KB
testcase_14 AC 223 ms
73,216 KB
testcase_15 AC 19 ms
11,136 KB
testcase_16 AC 19 ms
11,264 KB
testcase_17 AC 11 ms
8,192 KB
testcase_18 AC 14 ms
9,728 KB
testcase_19 AC 13 ms
9,600 KB
testcase_20 AC 11 ms
8,064 KB
testcase_21 AC 19 ms
11,136 KB
testcase_22 AC 19 ms
11,008 KB
testcase_23 AC 14 ms
9,600 KB
testcase_24 AC 13 ms
9,600 KB
testcase_25 AC 7 ms
6,144 KB
testcase_26 AC 10 ms
8,064 KB
testcase_27 AC 23 ms
12,544 KB
testcase_28 AC 13 ms
9,600 KB
testcase_29 AC 14 ms
9,472 KB
testcase_30 AC 893 ms
199,040 KB
testcase_31 AC 882 ms
199,168 KB
testcase_32 AC 878 ms
199,040 KB
testcase_33 AC 884 ms
198,912 KB
testcase_34 AC 857 ms
198,144 KB
testcase_35 AC 866 ms
199,040 KB
testcase_36 AC 834 ms
193,792 KB
testcase_37 AC 841 ms
193,792 KB
testcase_38 AC 881 ms
198,400 KB
testcase_39 AC 867 ms
198,656 KB
testcase_40 AC 1 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 873 ms
199,040 KB
testcase_47 AC 895 ms
199,168 KB
testcase_48 AC 877 ms
199,040 KB
testcase_49 AC 768 ms
183,680 KB
testcase_50 AC 860 ms
197,632 KB
testcase_51 AC 878 ms
199,040 KB
testcase_52 AC 837 ms
198,912 KB
testcase_53 AC 819 ms
195,584 KB
testcase_54 AC 853 ms
199,040 KB
testcase_55 AC 834 ms
198,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
template <typename T> using posteriority_queue = priority_queue<T, vector<T>, greater<T> >;
const int INF = 0x3f3f3f3f;
const ll LINF = 0x3f3f3f3f3f3f3f3fLL;
const double EPS = 1e-8;
const int MOD = 1000000007;
// const int MOD = 998244353;
const int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
// const int dy[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx[] = {0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
template <typename T> void unique(vector<T> &a) { a.erase(unique(ALL(a)), a.end()); }
struct IOSetup {
  IOSetup() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    cout << fixed << setprecision(20);
  }
} iosetup;

int main() {
  int n, x; cin >> n >> x;
  if (n == 1) {
    cout << "B\n";
    return 0;
  }
  vector<int> a(n); REP(i, n) cin >> a[i];
  vector<int> l(n, 0), r(n, 0);
  REP(i, n) {
    int sum = a[i], j = i + 1;
    while (j < n && sum + a[j] <= x) sum += a[j++];
    l[i] = j - i;
  }
  REP(i, n) {
    int sum = a[i], j = i - 1;
    while (j >= 0 && sum + a[j] <= x) sum += a[j--];
    r[i] = i - j;
  }
  vector<vector<int> > dp_l(n, vector<int>(n, 0)), dp_r(n, vector<int>(n, 0));
  FOR(len, 2, n + 1) {
    REP(i, n) {
      int j = i + len - 1;
      if (j >= n) break;
      int chou = min(len - 1, l[i]);
      if (dp_r[i + 1][j] - (i + chou + 1 >= n ? 0 : dp_r[i + chou + 1][j]) != chou) {
        dp_l[i][j] = dp_l[i][j - 1] + 1;
        dp_r[i][j] = dp_r[i + 1][j] + 1;
        continue;
      }
      chou = min(len - 1, r[j]);
      if (dp_l[i][j - 1] - (j - chou - 1 < 0 ? 0 : dp_l[i][j - chou - 1]) != chou) {
        dp_l[i][j] = dp_l[i][j - 1] + 1;
        dp_r[i][j] = dp_r[i + 1][j] + 1;
        continue;
      }
      dp_l[i][j] = dp_l[i][j - 1];
      dp_r[i][j] = dp_r[i + 1][j];
    }
  }
  // REP(i, n) FOR(j, i, n) cout << i << ' ' << j << " : " << dp_r[i][j] << '\n';
  cout << (dp_l[0][n - 1] - dp_l[0][n - 2] == 1 ? "A\n" : "B\n");
  return 0;
}
0