結果

問題 No.458 異なる素数の和
ユーザー kyawashellkyawashell
提出日時 2017-12-07 18:05:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,176 bytes
コンパイル時間 1,680 ms
コンパイル使用メモリ 169,692 KB
実行使用メモリ 313,728 KB
最終ジャッジ日時 2024-05-06 19:26:35
合計ジャッジ時間 9,517 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 87 ms
108,672 KB
testcase_02 AC 120 ms
140,672 KB
testcase_03 AC 22 ms
27,776 KB
testcase_04 AC 26 ms
34,816 KB
testcase_05 AC 255 ms
305,920 KB
testcase_06 AC 108 ms
132,864 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 198 ms
308,352 KB
testcase_09 AC 8 ms
11,392 KB
testcase_10 TLE -
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 #

#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