結果

問題 No.458 異なる素数の和
ユーザー chocopuuchocopuu
提出日時 2018-09-01 18:56:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 1,162 bytes
コンパイル時間 1,600 ms
コンパイル使用メモリ 166,428 KB
実行使用メモリ 343,112 KB
最終ジャッジ日時 2024-09-19 16:59:17
合計ジャッジ時間 6,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
251,776 KB
testcase_01 AC 158 ms
261,428 KB
testcase_02 AC 205 ms
264,088 KB
testcase_03 AC 123 ms
251,776 KB
testcase_04 AC 119 ms
251,776 KB
testcase_05 AC 183 ms
314,548 KB
testcase_06 AC 142 ms
263,156 KB
testcase_07 AC 111 ms
251,776 KB
testcase_08 AC 185 ms
307,072 KB
testcase_09 AC 113 ms
262,580 KB
testcase_10 AC 109 ms
261,272 KB
testcase_11 AC 197 ms
343,112 KB
testcase_12 AC 109 ms
260,428 KB
testcase_13 AC 111 ms
259,480 KB
testcase_14 AC 108 ms
259,468 KB
testcase_15 AC 109 ms
260,396 KB
testcase_16 AC 112 ms
260,464 KB
testcase_17 AC 109 ms
260,456 KB
testcase_18 AC 109 ms
259,460 KB
testcase_19 AC 112 ms
251,776 KB
testcase_20 AC 111 ms
251,776 KB
testcase_21 AC 110 ms
260,432 KB
testcase_22 AC 111 ms
259,416 KB
testcase_23 AC 110 ms
260,400 KB
testcase_24 AC 109 ms
251,776 KB
testcase_25 AC 110 ms
260,492 KB
testcase_26 AC 114 ms
259,452 KB
testcase_27 AC 139 ms
261,620 KB
testcase_28 AC 195 ms
329,728 KB
testcase_29 AC 109 ms
259,532 KB
testcase_30 AC 127 ms
251,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,s,n) for(int i = s;i<n;i++)
#define repe(i,s,n) for(int i = s;i<=n;i++)
#define pb push_back
#define fi first
#define se second
typedef long long ll;
typedef pair<int,int>pint;
typedef vector<int>vint;
typedef vector<pint>vpint;
static const ll maxLL = (ll)1 << 62;
const int mod=1000000007;
int dy[]={-1,0,1,0};
int dx[]={0,1,0,-1};

//#define int ll


int n,m;
int dp[3010][40101];
vector<int> P;
void make_primes(int n)
{
	vector<bool> primes;

	primes.resize(n + 1, true);
	primes[0] = primes[1] = false;
	rep(i, 2, sqrt(n)) if (primes[i]) for (int j = 0; i * (j + 2) < n; j++)
		primes[i * (j + 2)] = false;

	rep(i, 2, n + 1) if (primes[i]) P.push_back(i);
}

signed main(){
    cin>>n;
    make_primes(n+1);
    rep(i,0,3010)rep(j,0,20101)dp[i][j]=-1;
    dp[0][0]=0;
    
    rep(i,0,P.size())rep(j,0,n+1)if(dp[i][j]>=0){
        dp[i+1][j]=max(dp[i+1][j],dp[i][j]);
        dp[i+1][j+P[i]]=max(dp[i+1][j+P[i]],dp[i][j]+1);
        
    }
    int ans=-1;
    rep(i,0,P.size()){
        ans=max(ans,dp[i][n]);
        
    }
    if(ans)cout<<ans<<endl;
    else cout<<"-1"<<endl;
    return 0;
}
0