結果

問題 No.458 異なる素数の和
ユーザー lapilapi
提出日時 2019-04-06 19:54:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,732 bytes
コンパイル時間 1,158 ms
コンパイル使用メモリ 104,460 KB
実行使用メモリ 183,168 KB
最終ジャッジ日時 2024-06-24 19:38:52
合計ジャッジ時間 4,304 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
15,616 KB
testcase_01 AC 104 ms
104,448 KB
testcase_02 AC 112 ms
119,040 KB
testcase_03 AC 42 ms
53,376 KB
testcase_04 AC 48 ms
59,648 KB
testcase_05 AC 189 ms
175,488 KB
testcase_06 AC 109 ms
115,584 KB
testcase_07 AC 12 ms
18,688 KB
testcase_08 AC 189 ms
176,128 KB
testcase_09 AC 26 ms
34,048 KB
testcase_10 RE -
testcase_11 AC 207 ms
183,168 KB
testcase_12 AC 9 ms
12,672 KB
testcase_13 AC 8 ms
12,544 KB
testcase_14 AC 8 ms
12,672 KB
testcase_15 AC 8 ms
12,544 KB
testcase_16 AC 33 ms
42,624 KB
testcase_17 AC 8 ms
13,184 KB
testcase_18 AC 9 ms
13,184 KB
testcase_19 AC 9 ms
12,800 KB
testcase_20 AC 8 ms
13,440 KB
testcase_21 AC 9 ms
12,672 KB
testcase_22 AC 9 ms
12,928 KB
testcase_23 AC 9 ms
13,440 KB
testcase_24 AC 7 ms
13,440 KB
testcase_25 AC 10 ms
13,056 KB
testcase_26 AC 9 ms
13,184 KB
testcase_27 AC 109 ms
112,896 KB
testcase_28 AC 206 ms
183,168 KB
testcase_29 AC 18 ms
27,008 KB
testcase_30 AC 79 ms
89,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#include <list>
#include <set>
#include <map>
#include <numeric>
#include <regex>
#include <tuple>
#include<iomanip>
using namespace std;

typedef long long ll;
typedef pair<int, int> P;
#define MOD 1000000007 // 10^9 + 7
#define INF 1000000000 // 10^9
#define LLINF 1LL<<60


bool isPrime[20001];

// n番目までの数について素数かどうか判断する
void primeTable(int n) {
	for (int i = 1; i <= n; i++) isPrime[i] = true;
	isPrime[0] = isPrime[1] = false;

	for (int i = 2; i <= n; i++) {
		if (isPrime[i]) {
			for (int j = 2 * i; j <= n; j += i) isPrime[j] = false; // iの倍数はすべて素数でない
		}
	}
}

vector<int> primeArray;

int dp[2300][20009]; // dp[i][j] : 0番目の素数からi番目の素数を使ってjを表す時の最長の長さ
				    // 無理な時は-1

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

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

	// 素数表の準備
	primeTable(N);
	for (int i = 0; i <= N; i++) if (isPrime[i]) primeArray.push_back(i);

	// for (int i = 0; i < primeArray.size(); i++) cout << primeArray[i] << " ";
	// cout << primeArray.size() << endl;
	
	
	for (int i = 0; i < primeArray.size(); i++) dp[i][primeArray[i]] = 1;
	for (int i = 0; i < primeArray.size()-1; i++) {
		for (int j = 0; j <= N; j++) {
			if (dp[i][j] > 0) {
				dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]);
				if (j + primeArray[i + 1] <= N) dp[i + 1][j + primeArray[i + 1]] = max(dp[i + 1][j + primeArray[i + 1]], dp[i][j] + 1);
			}
		}
	}

	cout << dp[primeArray.size() - 1][N] << endl;
	

	return 0;
}
0