結果

問題 No.458 異なる素数の和
ユーザー らーゆらーゆ
提出日時 2024-05-02 21:58:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 778 bytes
コンパイル時間 1,038 ms
コンパイル使用メモリ 77,804 KB
実行使用メモリ 14,196 KB
最終ジャッジ日時 2024-05-02 21:58:31
合計ジャッジ時間 4,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
10,752 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

using namespace std;
#include<iostream>
#include<algorithm>
#include<cstring>
#include<vector>
#include<cmath>
int N;
int dp[20009];
vector<int> p(20009);
int fanc(int i, vector<int> p) {
	if (dp[i] != -1) {
		return dp[i];
	}
	int res = -1;
	if (i == 0) res = 0;
	for (int j = 2; j <= N; j++) {
		if (p[j]==1 and (i - j) >= 0) {
			p[j] = 0;
			if (res < fanc(i - j,p) + 1) {
				if (fanc(i - j,p) == -1) {
					res = -1;
				}
				else {
					res = fanc(i - j, p) + 1;
				}
			}
		}
	}
	return dp[i] = res;
}

int main() {
	cin >> N;
	for (int j = 2; j <= N; j++) {
		for (int k = 2; k <= int(sqrt(j)); k++) {
			if (j % k == 0 and j != k) {
				p[j] = -1;
				break;
			}
		}
		if (p[j] != -1) {
			p[j] = 1;
		}
	}
	memset(dp, -1, sizeof(dp));
	cout << fanc(N,p) << endl;
}
0