結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー | outline |
提出日時 | 2021-01-23 20:19:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,447 bytes |
コンパイル時間 | 1,463 ms |
コンパイル使用メモリ | 137,940 KB |
実行使用メモリ | 12,516 KB |
最終ジャッジ日時 | 2024-06-10 03:57:54 |
合計ジャッジ時間 | 7,946 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
12,288 KB |
testcase_01 | AC | 2 ms
6,948 KB |
testcase_02 | AC | 2 ms
6,948 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 983 ms
12,516 KB |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> #include <unordered_set> using namespace std; using ll = long long; constexpr int INF = 1001001001; // constexpr int mod = 1000000007; constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } void solve(){ int N, K; cin >> N >> K; vector<int> dp(N + 1, -1); auto func = [&](auto&& self, int i) -> int { if(dp[i] != -1) return dp[i]; if(i == N) return dp[i] = 1; int res = 0; for(int j = 1; j <= min(K, N - i); ++j){ res |= self(self, i + j) ^ 1; } return dp[i] = res; }; cout << (func(func, 0) ? "Win\n" : "Lose\n"); } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int T; cin >> T; while(T--) solve(); return 0; }