結果

問題 No.458 異なる素数の和
ユーザー uenokuuenoku
提出日時 2016-12-09 14:58:38
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,216 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 67,152 KB
実行使用メモリ 159,488 KB
最終ジャッジ日時 2024-05-06 10:19:36
合計ジャッジ時間 4,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 50 ms
58,624 KB
testcase_02 AC 65 ms
74,880 KB
testcase_03 AC 13 ms
16,896 KB
testcase_04 AC 16 ms
20,608 KB
testcase_05 RE -
testcase_06 AC 67 ms
72,640 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 RE -
testcase_09 AC 6 ms
9,892 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 RE -
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 9 ms
14,748 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 66 ms
67,712 KB
testcase_28 RE -
testcase_29 AC 4 ms
9,600 KB
testcase_30 AC 42 ms
43,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>
#include <set>
using namespace std;
set<int> primes(int n)
{
    bool isprime[20005] = {};
    for (int i = 2; i * i < 20005; i++) {
        if (!isprime[i]) {
            for (int j = 2 * i; j < 20005; j += i) {
                isprime[j] = true;
            }
        }
    }
    set<int> s;
    for (int i = 2; i <= n; i++) {
        if (!isprime[i])
            s.insert(i);
    }
    return s;
}

int dp[2000][20005] = {};
int main()
{
    int n;
    cin >> n;
    set<int> p = primes(n + 3);
    //dp[i][j]:= j番目までの素数でi をそれぞれ異なる素数の和で表したときの和の回数の最大
    int nx = 1, now = 0;

    int cnt = 0;
    for (auto s : p) {
        //cout << s << endl;
        for (int j = 1; j < n + 1; j++) {
            if (j == s) {
                dp[cnt + 1][j] = max(1, dp[cnt][j]);
            } else if (j - s >= 0 && dp[cnt][j - s])
                dp[cnt + 1][j] = max(dp[cnt][j], dp[cnt][j - s] + 1);
            else
                dp[cnt + 1][j] = dp[cnt][j];
        }
        cnt++;
    }
    if (dp[cnt - 1][n] == 0)
        cout << -1 << endl;
    else
        cout << dp[cnt - 1][n] << endl;
    int ans = 0;
}
0