結果

問題 No.458 異なる素数の和
ユーザー bombrary_skbombrary_sk
提出日時 2019-05-19 13:41:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,052 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 59,996 KB
実行使用メモリ 249,600 KB
最終ジャッジ日時 2024-09-17 06:28:05
合計ジャッジ時間 4,165 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
249,412 KB
testcase_01 AC 90 ms
249,472 KB
testcase_02 WA -
testcase_03 AC 68 ms
249,472 KB
testcase_04 AC 69 ms
249,512 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 63 ms
249,424 KB
testcase_08 WA -
testcase_09 AC 67 ms
249,472 KB
testcase_10 AC 71 ms
249,600 KB
testcase_11 WA -
testcase_12 AC 62 ms
249,472 KB
testcase_13 AC 62 ms
249,472 KB
testcase_14 AC 63 ms
249,468 KB
testcase_15 AC 62 ms
249,600 KB
testcase_16 AC 63 ms
249,416 KB
testcase_17 AC 62 ms
249,584 KB
testcase_18 AC 61 ms
249,464 KB
testcase_19 AC 62 ms
249,524 KB
testcase_20 AC 60 ms
249,344 KB
testcase_21 AC 62 ms
249,508 KB
testcase_22 AC 61 ms
249,472 KB
testcase_23 AC 61 ms
249,472 KB
testcase_24 AC 61 ms
249,452 KB
testcase_25 AC 61 ms
249,572 KB
testcase_26 AC 62 ms
249,600 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 62 ms
249,508 KB
testcase_30 AC 78 ms
249,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

// エラトステネスの篩  O(nloglogn)
// create p (1<=p<=n and p is a prime nubmer)
#define MAX_N 100000
vector<long long> prime;
bool is_prime[MAX_N + 1];
long long sieve(long long n)
{
  long long p = 0;
  for (long long i = 0; i <= n; i++) is_prime[i] = true;
  is_prime[0] = is_prime[1] = false;
  for (long long i = 2; i <= n; i++) {
    if (!is_prime[i]) continue;
    prime.push_back(i);
    for (long long j = 2 * i; j <= n; j += i) {
      is_prime[j] = false;
    }
  }
  return p;
}

int dp[3000][21000];
int main()
{
  for (int i = 0; i < 3000; i++) {
    for (int j = 0; j < 21000; j++) {
      dp[i][j] = -1;
    }
  }
  int N;
  cin >> N;
  sieve(N);

  dp[0][0] = 0;
  for (int i = 0; i < prime.size(); i++) {
    for (int j = 0; j <= N; j++) {
      if (dp[i][j] < 0) continue;
      dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]);
      dp[i + 1][j + prime[i]] = max(dp[i + 1][j + prime[i]], dp[i][j] + 1);
    }
  }
  cout << dp[prime.size()][N] << endl;

  return 0;
}
0