結果
問題 | No.973 余興 |
ユーザー | mugen_1337 |
提出日時 | 2021-04-13 15:07:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,893 bytes |
コンパイル時間 | 2,297 ms |
コンパイル使用メモリ | 215,748 KB |
実行使用メモリ | 7,428 KB |
最終ジャッジ日時 | 2024-06-29 20:01:04 |
合計ジャッジ時間 | 45,425 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,429 ms
7,296 KB |
testcase_01 | AC | 1,438 ms
7,292 KB |
testcase_02 | AC | 1,435 ms
7,168 KB |
testcase_03 | AC | 1,435 ms
7,296 KB |
testcase_04 | AC | 1,468 ms
7,296 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1,363 ms
7,296 KB |
testcase_11 | AC | 450 ms
7,168 KB |
testcase_12 | AC | 459 ms
7,128 KB |
testcase_13 | WA | - |
testcase_14 | AC | 453 ms
7,080 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 36 ms
6,784 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 61 ms
6,912 KB |
testcase_23 | AC | 46 ms
6,912 KB |
testcase_24 | AC | 47 ms
6,944 KB |
testcase_25 | AC | 21 ms
6,784 KB |
testcase_26 | AC | 34 ms
6,912 KB |
testcase_27 | AC | 68 ms
6,784 KB |
testcase_28 | WA | - |
testcase_29 | AC | 46 ms
6,912 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 1,268 ms
7,296 KB |
testcase_35 | AC | 1,269 ms
7,296 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 1,268 ms
7,424 KB |
testcase_39 | WA | - |
testcase_40 | AC | 4 ms
6,784 KB |
testcase_41 | AC | 4 ms
6,784 KB |
testcase_42 | AC | 4 ms
6,784 KB |
testcase_43 | WA | - |
testcase_44 | AC | 4 ms
6,656 KB |
testcase_45 | WA | - |
testcase_46 | AC | 475 ms
7,168 KB |
testcase_47 | WA | - |
testcase_48 | AC | 469 ms
7,296 KB |
testcase_49 | WA | - |
testcase_50 | AC | 492 ms
7,296 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 1,393 ms
7,296 KB |
testcase_54 | AC | 1,424 ms
7,296 KB |
testcase_55 | AC | 1,443 ms
7,296 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define ALL(x) begin(x),end(x) #define rep(i,n) for(int i=0;i<(n);i++) #define debug(v) cout<<#v<<":";for(auto x:v){cout<<x<<' ';}cout<<endl; #define mod 998244353 using ll=long long; const int INF=1000000000; const ll LINF=1001002003004005006ll; int dx[]={1,0,-1,0},dy[]={0,1,0,-1}; template<class T>bool chmax(T &a,const T &b){if(a<b){a=b;return true;}return false;} template<class T>bool chmin(T &a,const T &b){if(b<a){a=b;return true;}return false;} struct IOSetup{ IOSetup(){ cin.tie(0); ios::sync_with_stdio(0); cout<<fixed<<setprecision(12); } } iosetup; template<typename T> ostream &operator<<(ostream &os,const vector<T>&v){ for(int i=0;i<(int)v.size();i++) os<<v[i]<<(i+1==(int)v.size()?"":" "); return os; } template<typename T> istream &operator>>(istream &is,vector<T>&v){ for(T &x:v)is>>x; return is; } vector<bitset<5001>> dp(5001); set<int> st_l[5001],st_r[5001]; void solve(){ int n;ll x;cin>>n>>x; vector<ll> v(n); cin>>v; vector<ll> s(n); s[0]=v[0]; for(int i=1;i<n;i++) s[i]=s[i-1]+v[i]; rep(i,n) st_l[i].insert(i+1); rep(i,n) st_r[i+1].insert(i); for(int w=2;w<=n;w++){ for(int l=0;l+w<=n;l++){ int r=l+w;// [l,r) bool win=false; // left { ll offset=(l==0?0:s[l-1]); int ri=lower_bound(begin(s),end(s),offset+x+1)-begin(s); // can take [l,r) // if(seg_l[l].query(l,ri)) win=true; auto ite=st_l[l].lower_bound(l); if(*ite<ri) win=true; } // right { int li=lower_bound(begin(s),end(s),s[r-1]-x+1)-begin(s); // can take [li,r) auto ite=st_r[r].lower_bound(r); if(ite!=begin(st_r[r]) and *prev(ite)>=li) win=true; } dp[l][r]=win; if(!win){ st_l[l].insert(r); st_r[r].insert(l); } } } cout<<(dp[0][n]?"A":"B")<<endl; } void naive(){ int n;ll x;cin>>n>>x; vector<ll> v(n); cin>>v; for(int w=2;w<=n;w++){ for(int l=0;l+w<=n;l++){ int r=l+w;// [l,r) bool win=false; // left { ll s=v[l]; for(int i=l+1;i<r and s<=x;i++){ if(!dp[i][r]) win=true; s+=v[i]; } } // right { ll s=v[r-1]; for(int i=r-1;i>l and s<=x;i--){ if(!dp[l][i]) win=true; s+=v[i-1]; } } dp[l][r]=win; } } cout<<(dp[0][n]?"A":"B")<<endl; } signed main(){ // naive(); solve(); return 0; }