結果

問題 No.458 異なる素数の和
ユーザー kyawashellkyawashell
提出日時 2017-12-07 18:05:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,176 bytes
コンパイル時間 1,642 ms
コンパイル使用メモリ 170,668 KB
実行使用メモリ 367,108 KB
最終ジャッジ日時 2024-11-29 05:10:01
合計ジャッジ時間 12,134 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
19,932 KB
testcase_01 AC 86 ms
140,204 KB
testcase_02 AC 97 ms
169,528 KB
testcase_03 AC 25 ms
68,620 KB
testcase_04 AC 30 ms
74,480 KB
testcase_05 AC 205 ms
326,040 KB
testcase_06 AC 94 ms
172,464 KB
testcase_07 AC 8 ms
32,368 KB
testcase_08 AC 205 ms
335,472 KB
testcase_09 AC 18 ms
74,312 KB
testcase_10 TLE -
testcase_11 AC 533 ms
367,108 KB
testcase_12 AC 48 ms
6,816 KB
testcase_13 AC 32 ms
6,820 KB
testcase_14 AC 57 ms
6,816 KB
testcase_15 AC 63 ms
6,816 KB
testcase_16 AC 20 ms
22,908 KB
testcase_17 AC 3 ms
7,648 KB
testcase_18 AC 4 ms
5,248 KB
testcase_19 AC 8 ms
5,248 KB
testcase_20 AC 9 ms
5,248 KB
testcase_21 AC 10 ms
5,248 KB
testcase_22 AC 8 ms
5,248 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 8 ms
5,248 KB
testcase_25 AC 11 ms
5,248 KB
testcase_26 AC 15 ms
5,248 KB
testcase_27 AC 105 ms
130,252 KB
testcase_28 AC 424 ms
359,644 KB
testcase_29 AC 17 ms
15,232 KB
testcase_30 AC 76 ms
91,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
#define pb push_back
int dy[]={0, 0, 1, -1, 1, 1, -1, -1};
int dx[]={1, -1, 0, 0, 1, -1, -1, 1};

#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define mp make_pair
#define fi first
#define sc second
#define INF 1000000000
ll n;
ll dp[4000][30000];
bool hurui[30001];

void gethurui(bool hurui[],ll n){
	hurui[0] = hurui[1] = false;
	for(ll i = 2;i <= n;i++)
		hurui[i] = true;
	for(ll i = 2;i <= int(sqrt(n) + 0.1);i++){
		if(!hurui[i])
			continue;
		for(ll j = i * 2;j <= n;j += i)
			hurui[j] = false;
	}
}

vector< ll > p;

int main(){
	cin >> n;

	gethurui(hurui,n);
	REP(i,n + 1){
		if(hurui[i])
			p.pb(i);
	}
	ll ps = p.size();

	REP(i,n + 1){
		dp[0][i] = (i == p[0]) ? 1 : -INF;
	}
	dp[0][0] = 0;

	FOR(i,1,ps){
		REP(j,n+1){
			if(j < p[i]){
				dp[i][j] = dp[i - 1][j];
				continue;
			}

			dp[i][j] = max(dp[i - 1][j - p[i]] + 1,dp[i - 1][j]);
		}
	}

	cout << ((dp[ps - 1][n] > 0) ? dp[ps - 1][n] : -1) << endl;
	return 0;

}
0