結果
問題 | No.973 余興 |
ユーザー | FF256grhy |
提出日時 | 2020-01-18 16:05:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,842 bytes |
コンパイル時間 | 1,820 ms |
コンパイル使用メモリ | 179,756 KB |
実行使用メモリ | 428,160 KB |
最終ジャッジ日時 | 2024-06-27 15:47:17 |
合計ジャッジ時間 | 42,734 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,273 ms
428,032 KB |
testcase_01 | AC | 1,275 ms
428,032 KB |
testcase_02 | AC | 1,248 ms
427,904 KB |
testcase_03 | AC | 1,223 ms
427,904 KB |
testcase_04 | AC | 1,229 ms
428,032 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1,178 ms
416,384 KB |
testcase_11 | AC | 382 ms
174,592 KB |
testcase_12 | AC | 377 ms
174,732 KB |
testcase_13 | WA | - |
testcase_14 | AC | 378 ms
173,756 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 25 ms
14,720 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 40 ms
19,200 KB |
testcase_23 | AC | 32 ms
16,896 KB |
testcase_24 | AC | 33 ms
16,640 KB |
testcase_25 | AC | 13 ms
9,600 KB |
testcase_26 | AC | 24 ms
14,464 KB |
testcase_27 | AC | 49 ms
25,088 KB |
testcase_28 | WA | - |
testcase_29 | AC | 32 ms
16,640 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 1,135 ms
426,624 KB |
testcase_35 | AC | 1,146 ms
428,032 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 1,131 ms
427,008 KB |
testcase_39 | WA | - |
testcase_40 | AC | 3 ms
5,376 KB |
testcase_41 | AC | 3 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,073 ms
428,032 KB |
testcase_47 | WA | - |
testcase_48 | AC | 1,062 ms
427,904 KB |
testcase_49 | WA | - |
testcase_50 | AC | 1,066 ms
425,600 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 1,190 ms
423,040 KB |
testcase_54 | AC | 1,217 ms
428,032 KB |
testcase_55 | AC | 1,226 ms
427,904 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using LL = long long int; #define incID(i, l, r) for(int i = (l) ; i < (r); ++i) #define incII(i, l, r) for(int i = (l) ; i <= (r); ++i) #define decID(i, l, r) for(int i = (r) - 1; i >= (l); --i) #define decII(i, l, r) for(int i = (r) ; i >= (l); --i) #define inc(i, n) incID(i, 0, n) #define inc1(i, n) incII(i, 1, n) #define dec(i, n) decID(i, 0, n) #define dec1(i, n) decII(i, 1, n) #define inID(v, l, r) ((l) <= (v) && (v) < (r)) #define inII(v, l, r) ((l) <= (v) && (v) <= (r)) #define PB push_back #define EB emplace_back #define MP make_pair #define FI first #define SE second #define ALL(v) v.begin(), v.end() #define RALL(v) v.rbegin(), v.rend() auto setmin = [](auto & a, auto b) { return (b < a ? a = b, true : false); }; auto setmax = [](auto & a, auto b) { return (b > a ? a = b, true : false); }; auto setmineq = [](auto & a, auto b) { return (b <= a ? a = b, true : false); }; auto setmaxeq = [](auto & a, auto b) { return (b >= a ? a = b, true : false); }; auto fl = [](auto a, auto b) { assert(b != 0); return a / b - (a % b != 0 && ((a >= 0) != (b >= 0)) ? 1 : 0); }; auto ce = [](auto a, auto b) { assert(b != 0); return a / b + (a % b != 0 && ((a >= 0) == (b >= 0)) ? 1 : 0); }; auto mo = [](auto a, auto b) { assert(b != 0); a %= b; if(a < 0) { a += abs(b); } return a; }; LL gcd(LL a, LL b) { return (b == 0 ? a : gcd(b, a % b)); } LL lcm(LL a, LL b) { return a / gcd(a, b) * b; } #define bit(b, i) (((b) >> (i)) & 1) #define SI(v) static_cast<int>(v.size()) #define RF(e, v) for(auto & e: v) #define until(e) while(! (e)) #define if_not(e) if(! (e)) #define ef else if #define UR assert(false) // ---- ---- template<typename T> T MV(T v) { return v; } template<typename T, typename... R> auto MV(T v, int s, R... r) { return vector<decltype(MV(v, r...))>(s, MV(v, r...)); } #define LB(v, x) (lower_bound(ALL(v), x) - v.begin()) #define UB(v, x) (upper_bound(ALL(v), x) - v.begin()) int main() { LL n, x; cin >> n >> x; vector<LL> a(n), s(n + 1); inc(i, n) { cin >> a[i]; } inc(i, n) { s[i + 1] = s[i] + a[i]; } auto dp = MV(0, 2, n + 1, n + 1); vector<pair<int, int>> p; incII(d, 0, n) { incII(i, 0, n) { int j = i + d; if_not(j <= n) { continue; } if(d == 0) { dp[0][i][j] = dp[1][i][j] = +1; } if(d == 1) { dp[0][i][j] = dp[1][i][j] = -1; } if(d >= 1) { p.EB(i, j); } } } RF(e, p) { int i = e.FI; int j = e.SE; dp[0][i][j] += dp[0][i + 1][j]; dp[1][i][j] += dp[1][i][j - 1]; if(dp[0][i][j] == 0) { int r = UB(s, s[j] + x) - 1; if(j <= n) { dp[1][i][j]++; } if(r <= n) { dp[1][i][r]--; } } if(dp[1][i][j] == 0) { int l = LB(s, s[i] - x); if(0 <= i - 1) { dp[0][i - 1][j]++; } if(0 <= l - 1) { dp[0][l - 1][j]--; } } } cout << (dp[0][0][n] != 0 ? "A" : "B") << endl; return 0; }