結果

問題 No.7 プライムナンバーゲーム
ユーザー hanyuhanyu
提出日時 2020-12-26 16:20:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 5,000 ms
コード長 971 bytes
コンパイル時間 3,791 ms
コンパイル使用メモリ 200,392 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-09 05:01:36
合計ジャッジ時間 3,375 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 5 ms
6,948 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,948 KB
testcase_05 AC 2 ms
6,948 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,948 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 4 ms
6,948 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 6 ms
6,948 KB
testcase_15 AC 5 ms
6,948 KB
testcase_16 AC 5 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

// エラトステネスの篩(nは1以上, 素数列挙のみならi*i<=nで良い) O(nloglogn)
vector<bool> sieve(int n) {
  vector<bool> x(n + 1, true);
  x.at(0) = x.at(1) = false;
  for (int i = 2; i <= n; i++) {
    if (x.at(i)) {
      for (int j = 2 * i; j <= n; j += i) x.at(j) = false;
    }
  }
  return x;
}

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  
  int n;
  cin >> n;
  
  vector<bool> prime = sieve(n);
  vector<int> primelist;
  for (int i = 0; i <= n; i++) {
    if (prime[i]) primelist.emplace_back(i);
  }
  
  vector<bool> dp(n + 1, false);
  dp[0] = dp[1] = true;
  for (int i = 2; i <= n; i++) {
    bool win = false;
    for (int j = 0; j < primelist.size(); j++) {
      int look = i - primelist[j];
      if (look < 0) break;
      if (!dp[look]) {
        win = true;
        break;
      }
    }
    dp[i] = win;
  }
  
  if (dp[n]) cout << "Win\n";
  else cout << "Lose\n";
}
0