結果
問題 | No.973 余興 |
ユーザー | betrue12 |
提出日時 | 2020-01-17 22:50:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,024 bytes |
コンパイル時間 | 2,454 ms |
コンパイル使用メモリ | 208,000 KB |
実行使用メモリ | 199,680 KB |
最終ジャッジ日時 | 2024-06-25 23:15:43 |
合計ジャッジ時間 | 61,048 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,706 ms
199,424 KB |
testcase_01 | AC | 1,717 ms
199,424 KB |
testcase_02 | AC | 1,777 ms
199,296 KB |
testcase_03 | AC | 1,717 ms
199,040 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1,750 ms
199,424 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 458 ms
74,240 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 449 ms
73,728 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 27 ms
8,704 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 43 ms
11,520 KB |
testcase_23 | AC | 34 ms
10,240 KB |
testcase_24 | AC | 35 ms
10,240 KB |
testcase_25 | AC | 16 ms
6,656 KB |
testcase_26 | AC | 26 ms
8,576 KB |
testcase_27 | AC | 54 ms
12,928 KB |
testcase_28 | WA | - |
testcase_29 | AC | 34 ms
9,984 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 1,748 ms
199,296 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 1,731 ms
198,784 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 | 1,678 ms
199,424 KB |
testcase_47 | WA | - |
testcase_48 | AC | 1,701 ms
199,424 KB |
testcase_49 | AC | 1,565 ms
183,936 KB |
testcase_50 | AC | 1,678 ms
198,016 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 1,642 ms
196,096 KB |
testcase_54 | AC | 1,718 ms
199,424 KB |
testcase_55 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; template<typename T> struct BIT { int n; vector<T> dat; BIT(int n=0){ initialize(n); } void initialize(int nin){ n = nin; dat.resize(n, 0); } T sum(int i){ T s = 0; while(i >= 0){ s += dat[i]; i = (i & (i+1)) - 1; } return s; } T sum_between(int i, int j){ return sum(j) - sum(i-1); } void plus(int i, T x){ while(i < n){ dat[i] += x; i |= i+1; } } // a[0]+...+a[ret] >= x int lower_bound(T x){ if(x < 0) return -1; int ret = -1; int k = 1; while(2*k <= n) k <<= 1; for( ;k>0; k>>=1){ if(ret+k < n && dat[ret+k] < x){ x -= dat[ret+k]; ret += k; } } return ret + 1; } }; int main(){ int N, X; cin >> N >> X; vector<int64_t> A(N), S(N+1); for(int i=0; i<N; i++){ cin >> A[i]; S[i+1] = S[i] + A[i]; } vector<int> lnxt(N), rnxt(N); int ng = 0; for(int l=0; l<N; l++){ while(ng <= N && S[ng]-S[l] <= X) ng++; lnxt[l] = ng-1; } ng = N-1; for(int r=N-1; r>=0; r--){ while(ng >= 0 && S[r]-S[ng] <= X) ng--; rnxt[r] = ng; } BIT<int> bit_L2R[5000], bit_R2L[5000]; for(int i=0; i<N; i++){ bit_L2R[i].initialize(N); bit_R2L[i].initialize(N); bit_L2R[i].plus(i, 1); bit_R2L[i].plus(i, 1); } for(int d=1; d<N; d++) for(int l=0; l+d<N; l++){ int r = l+d; int lose = 1; if(bit_R2L[r].sum_between(l+1, min(lnxt[l], r))) lose = 0; if(bit_L2R[l].sum_between(max(l, rnxt[r]), r-1)) lose = 0; if(lose){ bit_L2R[l].plus(r, 1); bit_R2L[r].plus(l, 1); } } int first_lose = bit_L2R[0].sum_between(N-1, N-1); cout << (first_lose ? "B" : "A") << endl; return 0; }