結果
問題 | No.361 門松ゲーム2 |
ユーザー |
![]() |
提出日時 | 2020-08-07 17:45:18 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 243 ms / 2,000 ms |
コード長 | 1,075 bytes |
コンパイル時間 | 2,868 ms |
コンパイル使用メモリ | 200,680 KB |
最終ジャッジ日時 | 2025-01-12 15:47:00 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 28 |
ソースコード
#include <bits/stdc++.h> #define rep(a,n) for (ll a = 0; a < (n); ++a) using namespace std; using ll = long long; typedef pair<ll,ll> P; typedef pair<P,ll> PP; typedef vector<vector<ll> > Graph; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const ll INF = 1e18; //入力 ll l,d; vector<ll>g; ll grundy(ll l){ if(g[l]>=0)return g[l]; set<ll>st; for(int i=1;i<l;i++){ for(int j=i+1;j<l;j++){ int r = l-i-j; if(r-i<=d && i<j && j<r){ ll g1 = grundy(i); ll g2 = grundy(j); ll g3 = grundy(r); ll now = g1^g2^g3; st.insert(now); } } } int res = 0; while(st.count(res))res++; return g[l]=res; } int main(){ cin >> l >> d; g.resize(l+1,-1); if(grundy(l)==0){ cout << "matsu" << endl; } else{ cout << "kado" << endl; } return 0; }