結果
問題 | No.973 余興 |
ユーザー | mugen_1337 |
提出日時 | 2021-04-14 17:20:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,713 bytes |
コンパイル時間 | 2,337 ms |
コンパイル使用メモリ | 208,052 KB |
実行使用メモリ | 199,296 KB |
最終ジャッジ日時 | 2024-06-30 17:00:31 |
合計ジャッジ時間 | 26,946 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 620 ms
199,168 KB |
testcase_01 | WA | - |
testcase_02 | AC | 615 ms
199,168 KB |
testcase_03 | AC | 614 ms
199,040 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 608 ms
199,168 KB |
testcase_07 | WA | - |
testcase_08 | AC | 604 ms
198,272 KB |
testcase_09 | AC | 597 ms
199,168 KB |
testcase_10 | AC | 589 ms
191,232 KB |
testcase_11 | WA | - |
testcase_12 | AC | 192 ms
73,728 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 12 ms
11,008 KB |
testcase_16 | AC | 14 ms
11,264 KB |
testcase_17 | AC | 7 ms
8,064 KB |
testcase_18 | AC | 9 ms
9,728 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 13 ms
11,264 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 16 ms
12,288 KB |
testcase_28 | AC | 9 ms
9,728 KB |
testcase_29 | WA | - |
testcase_30 | AC | 740 ms
199,168 KB |
testcase_31 | AC | 741 ms
199,168 KB |
testcase_32 | AC | 756 ms
199,040 KB |
testcase_33 | AC | 748 ms
198,912 KB |
testcase_34 | AC | 748 ms
198,400 KB |
testcase_35 | WA | - |
testcase_36 | AC | 731 ms
193,920 KB |
testcase_37 | AC | 741 ms
193,920 KB |
testcase_38 | AC | 769 ms
198,400 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 2 ms
6,944 KB |
testcase_42 | AC | 2 ms
6,944 KB |
testcase_43 | AC | 2 ms
6,940 KB |
testcase_44 | AC | 2 ms
6,940 KB |
testcase_45 | AC | 3 ms
6,940 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | AC | 732 ms
199,040 KB |
testcase_49 | AC | 641 ms
183,808 KB |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 735 ms
195,584 KB |
testcase_54 | WA | - |
testcase_55 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:53:21: warning: 'j' may be used uninitialized [-Wmaybe-uninitialized] 53 | t_l[i]=j-1; | ~^~ main.cpp:48:17: note: 'j' was declared here 48 | int j; | ^
ソースコード
#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; } signed main(){ int n;ll x;cin>>n>>x; vector<ll> v(n); cin>>v; vector<int> t_l(n),t_r(n);// can take [i, t_l[i]], [t_r[i], i] vector<ll> s(n); s[0]=v[0]; for(int i=1;i<n;i++) s[i]=s[i-1]+v[i]; for(int i=0;i<n;i++){ { ll sum=0; int j; for(int j=i;j<n;j++){ sum+=v[j]; if(sum>x) break; } t_l[i]=j-1; } { ll sum=0; int j; for(j=i;j>=0;j--){ sum+=v[j]; if(sum>x) break; } t_r[i]=j+1; } } for(int i=0;i<n;i++){ ll sum=0; for(int j=i;j<=t_l[i];j++) sum+=v[j]; assert(sum<=x); } for(int i=0;i<n;i++){ ll sum=0; for(int j=t_r[i];j<=i;j++) sum+=v[j]; // assert(sum<=x); } vector<vector<int>> L(n+2,vector<int>(n+2,0)),R(n+2,vector<int>(n+2,0)); rep(i,n) L[i][i]=1,R[i][i]=1; auto getL=[&](int R,int l,int r){ int ret=L[l][R]; if(r+1<=n) ret-=L[r+1][R]; return ret; }; auto getR=[&](int L,int l,int r){ int ret=R[L][r]; if(l) ret-=R[L][l-1]; return ret; }; bool res=false; for(int w=2;w<=n;w++){ for(int l=0;l+w<=n;l++){ int r=l+w-1; bool win=false; int a=t_l[l];// can eat [l,a] int b=t_r[r];// [b,r] if(getL(r,l+1,a+1)) win=true; if(getR(l,b-1,r-1)) win=true; L[l][r]=L[l+1][r]; R[l][r]=R[l][r-1]; if(!win){ L[l][r]++; R[l][r]++; } if(l==0 and r==n-1) res=win; } } cout<<("BA"[res])<<endl; return 0; }