結果

問題 No.7 プライムナンバーゲーム
ユーザー MitI_7MitI_7
提出日時 2016-03-05 21:29:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 344 ms / 5,000 ms
コード長 1,622 bytes
コンパイル時間 950 ms
コンパイル使用メモリ 95,188 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 15:41:36
合計ジャッジ時間 3,980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 341 ms
5,248 KB
testcase_03 AC 19 ms
5,248 KB
testcase_04 AC 5 ms
5,248 KB
testcase_05 AC 5 ms
5,248 KB
testcase_06 AC 100 ms
5,248 KB
testcase_07 AC 67 ms
5,248 KB
testcase_08 AC 28 ms
5,248 KB
testcase_09 AC 153 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 66 ms
5,248 KB
testcase_12 AC 248 ms
5,248 KB
testcase_13 AC 264 ms
5,248 KB
testcase_14 AC 344 ms
5,248 KB
testcase_15 AC 325 ms
5,248 KB
testcase_16 AC 300 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <algorithm>
#include <numeric>
#include <functional>
#include <set>
#include <sstream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <cctype>
#include <climits>
#include <fstream>
#include <bitset>
#include <time.h>

#define ll long long
#define FOR(i,a,b) for(int i= (a); i<((int)b); ++i)
#define RFOR(i,a) for(int i=(a); i >= 0; --i)
#define FOE(i,a) for(auto i : a)
#define ALL(c) (c).begin(), (c).end()
#define RALL(c) (c).rbegin(), (c).rend()
#define DUMP(x)  cerr << #x << " = " << (x) << endl;
#define SUM(x) std::accumulate(ALL(x), 0LL)
#define EPS 1e-14

using namespace std;


// nまでの素数のリストを作成(nを含む)
vector<long long> getPrimeList(int n) {
    vector<bool> dp(n + 1, false);
    dp[0] = dp[1] = true;
    vector<long long> primeList;
    for (int i = 2; i < n + 1; ++i) {
        if (dp[i]) { continue; }
        primeList.push_back(i);
        for (int j = i; j < n + 1; j += i) {
            dp[j] = true;
        }
    }
    return primeList;
}

map<int, bool> memo;

bool win(int n, const vector<ll> &primes) {
    if (memo.find(n) != memo.end()) {
        return memo[n];
    }

    FOE(p, primes) {
        if (n - p > 1) {
            if (!win(n - p, primes)) {
                return memo[n] = true;
            }
        }
    }
    return memo[n] = false;
}

int main(int argc, char *argv[]) {
    int N;
    cin >> N;
    vector<ll> p = getPrimeList(N);
    cout << (win(N, p) ? "Win" : "Lose") << endl;

    return 0;
}
0