結果
問題 | No.973 余興 |
ユーザー | 👑 emthrm |
提出日時 | 2020-01-18 05:35:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,219 bytes |
コンパイル時間 | 2,370 ms |
コンパイル使用メモリ | 206,000 KB |
実行使用メモリ | 199,168 KB |
最終ジャッジ日時 | 2024-06-26 10:21:47 |
合計ジャッジ時間 | 26,190 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 578 ms
199,040 KB |
testcase_01 | AC | 574 ms
198,912 KB |
testcase_02 | AC | 587 ms
198,912 KB |
testcase_03 | AC | 574 ms
198,784 KB |
testcase_04 | AC | 591 ms
199,040 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 549 ms
191,104 KB |
testcase_11 | AC | 214 ms
73,856 KB |
testcase_12 | AC | 216 ms
73,728 KB |
testcase_13 | WA | - |
testcase_14 | AC | 211 ms
73,216 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 8 ms
8,064 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 13 ms
11,136 KB |
testcase_23 | AC | 10 ms
9,472 KB |
testcase_24 | AC | 9 ms
9,600 KB |
testcase_25 | AC | 5 ms
6,944 KB |
testcase_26 | AC | 7 ms
8,064 KB |
testcase_27 | AC | 16 ms
12,288 KB |
testcase_28 | WA | - |
testcase_29 | AC | 9 ms
9,472 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 779 ms
198,144 KB |
testcase_35 | AC | 744 ms
199,040 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 756 ms
198,400 KB |
testcase_39 | WA | - |
testcase_40 | AC | 2 ms
6,944 KB |
testcase_41 | AC | 2 ms
6,940 KB |
testcase_42 | AC | 2 ms
6,944 KB |
testcase_43 | WA | - |
testcase_44 | AC | 2 ms
6,940 KB |
testcase_45 | WA | - |
testcase_46 | AC | 732 ms
198,912 KB |
testcase_47 | WA | - |
testcase_48 | AC | 742 ms
198,912 KB |
testcase_49 | WA | - |
testcase_50 | AC | 747 ms
197,504 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 718 ms
195,584 KB |
testcase_54 | AC | 756 ms
199,040 KB |
testcase_55 | AC | 746 ms
198,912 KB |
ソースコード
#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) ++j; l[i] = j - i; } REP(i, n) { int sum = a[i], j = i - 1; while (j >= 0 && sum + a[j] <= x) --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] - dp_r[i + chou][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] - dp_l[i][j - chou] != 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) REP(j, n) cout << i << ' ' << j << " : " << dp_l[i][j] << '\n'; cout << (dp_l[0][n - 1] - dp_l[0][n - 2] == 1 ? "A\n" : "B\n"); return 0; }