結果
問題 | No.973 余興 |
ユーザー | utouto97 |
提出日時 | 2020-01-20 19:22:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,089 bytes |
コンパイル時間 | 1,638 ms |
コンパイル使用メモリ | 164,616 KB |
実行使用メモリ | 394,752 KB |
最終ジャッジ日時 | 2024-07-02 23:06:46 |
合計ジャッジ時間 | 71,603 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1,988 ms
394,752 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1,982 ms
394,624 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2,008 ms
394,496 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1,986 ms
392,960 KB |
testcase_09 | AC | 1,998 ms
394,624 KB |
testcase_10 | WA | - |
testcase_11 | AC | 610 ms
144,256 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 607 ms
143,232 KB |
testcase_15 | AC | 43 ms
18,944 KB |
testcase_16 | AC | 43 ms
19,200 KB |
testcase_17 | WA | - |
testcase_18 | AC | 34 ms
15,872 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 43 ms
19,072 KB |
testcase_22 | AC | 42 ms
19,072 KB |
testcase_23 | AC | 34 ms
16,000 KB |
testcase_24 | AC | 35 ms
15,616 KB |
testcase_25 | AC | 15 ms
8,832 KB |
testcase_26 | AC | 24 ms
12,800 KB |
testcase_27 | WA | - |
testcase_28 | AC | 35 ms
16,000 KB |
testcase_29 | AC | 34 ms
15,616 KB |
testcase_30 | AC | 2,026 ms
394,624 KB |
testcase_31 | AC | 2,013 ms
394,624 KB |
testcase_32 | AC | 2,013 ms
394,752 KB |
testcase_33 | AC | 2,002 ms
394,240 KB |
testcase_34 | WA | - |
testcase_35 | AC | 1,994 ms
394,752 KB |
testcase_36 | AC | 1,956 ms
384,256 KB |
testcase_37 | AC | 2,005 ms
384,256 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 1 ms
5,376 KB |
testcase_43 | AC | 2 ms
5,376 KB |
testcase_44 | WA | - |
testcase_45 | AC | 3 ms
5,376 KB |
testcase_46 | AC | 1,934 ms
394,752 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | AC | 1,879 ms
363,904 KB |
testcase_50 | AC | 2,035 ms
391,680 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | AC | 1,949 ms
394,752 KB |
testcase_55 | AC | 1,948 ms
394,496 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long #define rep(i,l,r) for(int i=(int)(l);i<(int)(r);i++) #define all(x) (x).begin(),(x).end() #define sz(x) ((int)x.size()) template<class T>bool chmax(T &a,T b){if(a<b){a=b;return 1;}return 0;} template<class T>bool chmin(T &a,T b){if(a>b){a=b;return 1;}return 0;} /* */ using vi = vector<int>; using vvi = vector<vi>; using P = pair<int,int>; template<class T> class BinaryIndexedTree { public: int n; vector<T> bit; BinaryIndexedTree():n(-1){} BinaryIndexedTree(int n_, T d):n(n_),bit(n_+1,d){} T sum(int i) { T s = 0; while(i > 0){ s += bit[i]; i -= i&-i; } return s; } void add(int i, T x) { if(i == 0) return; while(i <= n){ bit[i] += x; i += i&-i; } } T sum0(int i) { return sum(i+1); } void add0(int i, T x) { add(i+1, x); } T query(int l, int r) { return sum(r-1)-sum(l-1); } T query0(int l, int r) { return sum(r)-sum(l); } }; signed main() { int n, x; cin >> n >> x; vi a(n); rep(i, 0, n) cin >> a[i]; vi lr(n+1), rl(n+1); int r = 0, sum = 0; rep(l, 0, n){ while(r < n and sum + a[r] <= x){ sum += a[r]; r++; rl[r] = l; } lr[l] = r; if(l == r) r++; else sum -= a[l]; } // rep(i, 0, n) cout << lr[i] << " "; // cout << endl; // rep(i, 0, n) cout << rl[i] << " "; // cout << endl; vector<BinaryIndexedTree<int>> bitl(n+1, BinaryIndexedTree<int>(n+1, 0)); vector<BinaryIndexedTree<int>> bitr(n+1, BinaryIndexedTree<int>(n+1, 0)); rep(i, 0, n+1){ bitl[i].add0(i, 1); bitr[i].add0(i, 1); } rep(len, 1, n+1){ rep(left, 0, n-len+1){ int right = left+len; int s = min(lr[left], right); int t = max(left, rl[right]); if(((s-left) - bitr[r].query0(left+1, s+1)) or ((right-t) - bitl[left].query0(t, right))){ bitl[left].add0(right, 1); bitr[right].add0(left, 1); } } } if(bitl[0].query0(n, n+1)) cout << "A" << endl; else cout << "B" << endl; return 0; }