結果

問題 No.458 異なる素数の和
ユーザー lapilapi
提出日時 2019-04-06 19:56:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,783 bytes
コンパイル時間 1,090 ms
コンパイル使用メモリ 104,372 KB
実行使用メモリ 183,272 KB
最終ジャッジ日時 2024-06-24 19:41:37
合計ジャッジ時間 3,521 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
15,744 KB
testcase_01 AC 99 ms
104,448 KB
testcase_02 AC 115 ms
119,040 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 48 ms
59,776 KB
testcase_05 AC 192 ms
175,488 KB
testcase_06 AC 111 ms
115,712 KB
testcase_07 AC 13 ms
18,944 KB
testcase_08 AC 193 ms
176,256 KB
testcase_09 AC 26 ms
34,048 KB
testcase_10 WA -
testcase_11 AC 211 ms
183,168 KB
testcase_12 AC 8 ms
12,672 KB
testcase_13 AC 8 ms
12,544 KB
testcase_14 AC 8 ms
12,800 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,312 KB
testcase_19 AC 8 ms
12,800 KB
testcase_20 AC 8 ms
13,440 KB
testcase_21 AC 8 ms
12,928 KB
testcase_22 AC 8 ms
12,800 KB
testcase_23 AC 8 ms
13,440 KB
testcase_24 AC 9 ms
13,440 KB
testcase_25 AC 8 ms
13,056 KB
testcase_26 AC 8 ms
13,184 KB
testcase_27 AC 111 ms
112,768 KB
testcase_28 AC 207 ms
183,272 KB
testcase_29 AC 20 ms
27,136 KB
testcase_30 AC 80 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;
	if (N == 1) {
		cout << 0 << endl;
		return 0;
	}
	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