結果
問題 | No.973 余興 |
ユーザー | minato |
提出日時 | 2020-01-17 22:32:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,478 bytes |
コンパイル時間 | 2,436 ms |
コンパイル使用メモリ | 184,788 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-25 22:07:05 |
合計ジャッジ時間 | 43,113 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1,396 ms
6,784 KB |
testcase_06 | AC | 1,394 ms
6,656 KB |
testcase_07 | AC | 1,386 ms
6,656 KB |
testcase_08 | AC | 1,386 ms
6,656 KB |
testcase_09 | AC | 1,383 ms
6,656 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 443 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | AC | 60 ms
5,376 KB |
testcase_16 | AC | 61 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 47 ms
5,376 KB |
testcase_19 | AC | 48 ms
5,376 KB |
testcase_20 | AC | 35 ms
5,376 KB |
testcase_21 | AC | 59 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 48 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | AC | 1,209 ms
6,656 KB |
testcase_31 | AC | 1,214 ms
6,656 KB |
testcase_32 | AC | 1,210 ms
6,656 KB |
testcase_33 | AC | 1,219 ms
6,656 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 1,151 ms
6,656 KB |
testcase_37 | AC | 1,160 ms
6,656 KB |
testcase_38 | WA | - |
testcase_39 | AC | 1,193 ms
6,528 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 | WA | - |
testcase_45 | AC | 3 ms
5,376 KB |
testcase_46 | WA | - |
testcase_47 | AC | 465 ms
6,656 KB |
testcase_48 | WA | - |
testcase_49 | AC | 414 ms
6,400 KB |
testcase_50 | WA | - |
testcase_51 | AC | 462 ms
6,528 KB |
testcase_52 | AC | 1,343 ms
6,656 KB |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; #define INF (1e9) #define rep(i, n) for(int i = 0; i < (int)(n); i++) #define all(x) x.begin(),x.end() const long double PI = acos(-1.0L); const long long MOD = 1000000007LL; // const long long MOD = 998244353LL; typedef long long ll; typedef pair<int, int> pii; typedef pair<long long, long long> pll; template<class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return true;} return false; } template<class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return true;} return false; } //////////////////////////////////////////////////////////////////////////////////////////////////////// int main() { ios::sync_with_stdio(false); cin.tie(nullptr); ll N,X; cin >> N >> X; vector<ll> A(N); rep(i,N) cin >> A[i]; vector<ll> ls(N+1),rs(N+1); rep(i,N) ls[i+1] = ls[i] + A[i]; for (int i = N; i > 0; i--) rs[i-1] = rs[i] + A[i]; reverse(all(rs)); vector<vector<bool>> dp(N, vector<bool>(N)); for (int k = 1; k < N; k++) { for (int i = 0; i+k < N; i++) { int p = upper_bound(all(ls),X+ls[i]) - ls.begin(); if (p >= i+k+1) dp[i][i+k] = true; if (dp[p-2][i+k]) dp[i][i+k] = true; int q = upper_bound(all(rs),X+rs[N-i-k-1]) - rs.begin(); if (q >= N-i) dp[i][i+k] = true; if (dp[i][N-q+1]) dp[i][i+k] = true; } } cout << (dp[0][N-1] ? "A" : "B") << endl; }