結果
問題 | No.973 余興 |
ユーザー | kwm_t |
提出日時 | 2023-06-30 15:31:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,008 bytes |
コンパイル時間 | 2,335 ms |
コンパイル使用メモリ | 206,720 KB |
実行使用メモリ | 199,168 KB |
最終ジャッジ日時 | 2024-07-07 03:21:59 |
合計ジャッジ時間 | 28,543 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 728 ms
199,040 KB |
testcase_01 | AC | 733 ms
199,040 KB |
testcase_02 | AC | 708 ms
198,912 KB |
testcase_03 | AC | 739 ms
198,912 KB |
testcase_04 | AC | 726 ms
199,040 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 675 ms
191,232 KB |
testcase_11 | AC | 208 ms
73,856 KB |
testcase_12 | AC | 208 ms
73,856 KB |
testcase_13 | WA | - |
testcase_14 | AC | 208 ms
73,216 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 10 ms
8,064 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 19 ms
11,008 KB |
testcase_23 | AC | 13 ms
9,600 KB |
testcase_24 | AC | 13 ms
9,472 KB |
testcase_25 | AC | 7 ms
6,144 KB |
testcase_26 | AC | 11 ms
8,064 KB |
testcase_27 | AC | 23 ms
12,416 KB |
testcase_28 | WA | - |
testcase_29 | AC | 14 ms
9,344 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 769 ms
198,144 KB |
testcase_35 | AC | 744 ms
199,040 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 770 ms
198,272 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 | 765 ms
199,168 KB |
testcase_47 | WA | - |
testcase_48 | AC | 775 ms
198,912 KB |
testcase_49 | WA | - |
testcase_50 | AC | 768 ms
197,504 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 735 ms
195,584 KB |
testcase_54 | AC | 774 ms
199,040 KB |
testcase_55 | AC | 758 ms
198,912 KB |
ソースコード
#include <bits/stdc++.h> //#include <atcoder/all> using namespace std; //using namespace atcoder; //using mint = modint1000000007; //const int mod = 1000000007; //using mint = modint998244353; //const int mod = 998244353; //const int INF = 1e9; //const long long LINF = 1e18; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rep2(i,l,r)for(int i=(l);i<(r);++i) #define rrep(i, n) for (int i = (n-1); i >= 0; --i) #define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i) #define all(x) (x).begin(),(x).end() #define allR(x) (x).rbegin(),(x).rend() #define endl "\n" #define P pair<int,int> template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; } template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n, x; cin >> n >> x; vector<int>a(n); rep(i, n)cin >> a[i]; vector<int>left(n), right(n); rep(_, 2) { long long sum = 0; int j = 0; for (int i = 0; i < n; ++i) { while (j < n && sum + a[j] <= x) { sum += a[j]; j++; } left[i] = j - i; sum -= a[i]; } reverse(all(a)); swap(left, right); } reverse(all(right)); // 手番の状態、勝ちなら1負けなら0を累積和で持つ vector dpl(n, vector<int>(n + 2, 0)); vector dpr(n, vector<int>(n + 2, 0)); rep2(i, 1, n + 1) { rep(j, n) { // 閉区間 int l = j; int r = l + i - 1; if (r >= n - 1)break; dpl[l][i + 0] = dpl[l][i - 1]; dpr[r][i + 0] = dpr[r][i - 1]; { int can = min(i - 1, left[l]); int x = dpr[r][i - 1] - dpr[r][i - can - 1]; if (x != can) { dpl[l][i + 0]++; dpr[r][i + 0]++; continue; } } int can = min(i - 1, right[r]); int x = dpl[l][i - 1] - dpl[l][i - can - 1]; if (x != can) { dpl[l][i + 0]++; dpr[r][i + 0]++; } } } if (dpl[0][n + 0] == dpl[0][n - 1])cout << "B" << endl; else cout << "A" << endl; return 0; }