結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー | edge2992 |
提出日時 | 2022-09-14 08:39:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 716 bytes |
コンパイル時間 | 2,557 ms |
コンパイル使用メモリ | 206,872 KB |
実行使用メモリ | 25,472 KB |
最終ジャッジ日時 | 2024-05-08 13:03:29 |
合計ジャッジ時間 | 8,588 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define Int long long int getgrundy(int x, vector<int> & grundy, int N, int K){ if(grundy[x] != -1) return grundy[x]; set<int> Set; for(int i=x+1; i <= min(x+K, N-1); i++){ Set.insert(getgrundy(i, grundy, N, K)); } int subgame = 0; while(Set.count(subgame)) subgame++; return grundy[x] = subgame; } void solve(){ int N, K; cin >> N >> K; vector<int> grundy(N, -1); grundy[N-1] = 0; int gameval = getgrundy(0, grundy, N, K); if(gameval){ cout << "Win" << endl; }else{ cout << "Lose" << endl; } } int main() { int P; cin >> P; rep(i, P){ solve(); } return 0; }