結果

問題 No.458 異なる素数の和
ユーザー amowweeamowwee
提出日時 2016-12-29 15:48:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 791 bytes
コンパイル時間 748 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 23:43:48
合計ジャッジ時間 1,919 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 12 ms
5,376 KB
testcase_02 AC 15 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 30 ms
5,376 KB
testcase_06 AC 14 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 29 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 34 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 13 ms
5,376 KB
testcase_28 AC 35 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 9 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <iostream>

std::vector<int> sieve(int n)
{
	std::vector<bool> nums(n + 1, true);
	std::vector<int> primes;

	for (int i = 2; i *i < n; i++)
	{
		if (nums[i])
		{
			for (int j = 2; i*j < n; j++)
			{
				nums[i*j] = false;
			}
		}
	}
	for (int i = 2; i < nums.size(); i++)
	{
		if (nums[i])
		{
			primes.push_back(i);
		}
	}
	return primes;
}

int main(void)
{
	int n;
	std::cin >> n;
	std::vector<int> primes = sieve(n);
	std::vector<int> dp(n + 1, 0);
	for (auto p: primes)
	{
		for (int i = n; i  >= p+2; i--)
		{
			int ref = i - p;
			if (dp[ref] && dp[ref] >= dp[i])
			{
				dp[i ] = dp[ref] + 1;
			}
		}
		if (!dp[p])
		{
			dp[p] = 1;
		}
	}
	if (dp[n])
	{
		std::cout << dp[n] << std::endl;
	}
	else
	{
		std::cout << -1 << std::endl;
	}
	return 0;
}
0