結果

問題 No.458 異なる素数の和
ユーザー misora192misora192
提出日時 2020-05-19 09:17:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 1,002 bytes
コンパイル時間 1,612 ms
コンパイル使用メモリ 169,152 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-09 22:03:35
合計ジャッジ時間 3,014 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 23 ms
6,944 KB
testcase_02 AC 27 ms
6,940 KB
testcase_03 AC 11 ms
6,944 KB
testcase_04 AC 13 ms
6,944 KB
testcase_05 AC 43 ms
6,944 KB
testcase_06 AC 26 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 43 ms
6,940 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 48 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 26 ms
6,940 KB
testcase_28 AC 46 ms
6,940 KB
testcase_29 AC 5 ms
6,944 KB
testcase_30 AC 20 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=(0);i<(n);i++)

using namespace std;

typedef long long ll;

template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }

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

	int n;
	cin >> n;

	vector<bool> isprime(20001, true);
	isprime[0] = false;
	isprime[1] = false;
	for(int i = 2; i <= 20000; i++){
		if(isprime[i]){
			for(int j = i + i; j <= 20000; j += i){
				isprime[j] = false;
			}
		}
	}

	vector<int> primes;
	rep(i, 20001) if(isprime[i]) primes.push_back(i);

	int m = primes.size();

	int dp[2][n+1];
	int INF = 1e8;
	rep(i, 2) rep(j, n+1) dp[i][j] = -1;
	dp[0][n] = 0;

	rep(i, m) {
		rep(j, n+1) dp[(i+1)%2][j] = -1;

		int p = primes[i];
		rep(j, n+1){
			chmax(dp[(i+1)%2][j], dp[i%2][j]);
			if(j-p >= 0 && dp[i%2][j] != -1) chmax(dp[(i+1)%2][j-p], dp[i%2][j] + 1);
		}
	}

	cout << dp[n%2][0] << endl;
}
0