結果
問題 |
No.715 集合と二人ゲーム
|
ユーザー |
![]() |
提出日時 | 2018-07-13 23:06:40 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,484 bytes |
コンパイル時間 | 1,554 ms |
コンパイル使用メモリ | 167,140 KB |
実行使用メモリ | 28,800 KB |
最終ジャッジ日時 | 2024-10-09 05:31:23 |
合計ジャッジ時間 | 6,087 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 60 |
コンパイルメッセージ
main.cpp: In function ‘void solve()’: main.cpp:69:24: warning: ‘first’ may be used uninitialized in this function [-Wmaybe-uninitialized] 69 | V.push_back(pre-first+1); | ~~~^~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- int N; set<int> S; vector<int> V; int gr[505050]; int hoge(int v) { if(gr[v]>=0) return gr[v]; if(v==0) return 0; if(v<=2) return 1; v-=3; if(v<9) { return v!=4; } else { return 1+(v!=13); } /* if set<int> S; for(int i=1;i<=v;i++) { int L=max(0,i-1); int R=max(0,v-(i+1)); S.insert(gr[L]^gr[R]); } gr[v]=0; while(S.count(gr[v])) gr[v]++; return gr[v]; */ } void solve() { int i,j,k,l,r,x,y; string s; MINUS(gr); FOR(i,100) cout<<i<<" "<<hoge(i)<<endl; cin>>N; FOR(i,N) cin>>x, S.insert(x); int pre=-1,first; FORR(s,S) { if(pre==-1) { first=pre=s; } if(s>pre+1) { V.push_back(pre-first+1); first=s; } pre=s; } V.push_back(pre-first+1); int nim=0; FORR(v,V) nim^=hoge(v)%2; if(nim==0) cout<<"Second"<<endl; else cout<<"First"<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }