結果
問題 | No.973 余興 |
ユーザー | leaf_1415 |
提出日時 | 2020-01-18 03:44:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,256 bytes |
コンパイル時間 | 852 ms |
コンパイル使用メモリ | 57,696 KB |
実行使用メモリ | 242,228 KB |
最終ジャッジ日時 | 2024-06-26 07:57:23 |
合計ジャッジ時間 | 30,536 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 955 ms
240,304 KB |
testcase_01 | AC | 957 ms
240,328 KB |
testcase_02 | AC | 965 ms
240,400 KB |
testcase_03 | AC | 956 ms
241,976 KB |
testcase_04 | AC | 961 ms
242,052 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 917 ms
232,764 KB |
testcase_11 | AC | 320 ms
103,308 KB |
testcase_12 | AC | 321 ms
97,792 KB |
testcase_13 | WA | - |
testcase_14 | AC | 318 ms
97,024 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 29 ms
14,592 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 44 ms
19,200 KB |
testcase_23 | AC | 36 ms
17,024 KB |
testcase_24 | AC | 36 ms
16,768 KB |
testcase_25 | AC | 18 ms
11,008 KB |
testcase_26 | AC | 28 ms
14,336 KB |
testcase_27 | AC | 51 ms
21,120 KB |
testcase_28 | WA | - |
testcase_29 | AC | 36 ms
16,640 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 839 ms
241,388 KB |
testcase_35 | AC | 835 ms
242,228 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 833 ms
236,032 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 | 502 ms
236,672 KB |
testcase_47 | WA | - |
testcase_48 | AC | 506 ms
240,480 KB |
testcase_49 | WA | - |
testcase_50 | AC | 506 ms
240,596 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 922 ms
236,888 KB |
testcase_54 | AC | 940 ms
240,420 KB |
testcase_55 | AC | 939 ms
240,196 KB |
ソースコード
#include <iostream> #include <algorithm> #define llint long long #define inf 1e18 using namespace std; llint n, x; llint a[5005], sum[5005];; llint dp[5005][5005], dpsum[5005][5005]; llint get(llint sl, llint sr, llint tl, llint tr) { return dpsum[tl][tr] - dpsum[tl][sr-1] - dpsum[sl+1][tr] + dpsum[sl+1][sr-1]; } int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> n >> x; for(int i = 1; i <= n; i++) cin >> a[i]; for(int i = 1; i <= n; i++) sum[i] = sum[i-1] + a[i]; for(int l = n; l >= 1; l--){ for(int r = 1; r <= n; r++){ if(r-l < 0) continue; llint res = 0; llint p = upper_bound(sum, sum+n+1, sum[l-1]+x) - sum; if(p > r) res++; else res += get(l+1, r, p-1, r); //cout << l << " " << r << " " << p << endl; p = lower_bound(sum, sum+n+1, sum[r]-x) - sum; if(p < l) res++; else res += get(l, p+1, l, r); //cout << l << " " << r << " " << p << endl; if(res > 0) dp[l][r] = 0; else dp[l][r] = 1; dpsum[l][r] = dpsum[l+1][r] + dpsum[l][r-1] - dpsum[l+1][r-1] + dp[l][r]; } } /*for(int i = 1; i <= n; i++){ for(int j = 1; j <= n; j++){ cout <<dp[i][j]<< " "; } cout << endl; }*/ if(dp[1][n]) cout << "A" << endl; else cout << "B" << endl; return 0; }