結果

問題 No.458 異なる素数の和
ユーザー shop_oneshop_one
提出日時 2019-08-06 17:44:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 884 bytes
コンパイル時間 674 ms
コンパイル使用メモリ 73,472 KB
実行使用メモリ 180,096 KB
最終ジャッジ日時 2024-07-18 14:09:44
合計ジャッジ時間 3,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,528 KB
testcase_01 AC 102 ms
93,824 KB
testcase_02 AC 117 ms
108,032 KB
testcase_03 AC 45 ms
43,648 KB
testcase_04 AC 50 ms
49,664 KB
testcase_05 AC 173 ms
163,584 KB
testcase_06 AC 109 ms
104,704 KB
testcase_07 AC 8 ms
9,728 KB
testcase_08 AC 175 ms
164,224 KB
testcase_09 AC 24 ms
24,320 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 191 ms
180,096 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 34 ms
32,896 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 106 ms
101,888 KB
testcase_28 AC 189 ms
178,176 KB
testcase_29 AC 16 ms
17,536 KB
testcase_30 AC 83 ms
79,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#define FALSE -1
using namespace std;
vector<int> n_list;
void eratos(bool cp_list[],int max){
  for(int i=2;i<=max;i++){
    cp_list[i]=true;
  }
  cp_list[1]=false;
  for(int i=2;i<=max;i++){
    if(cp_list[i]){
      n_list.push_back(i);
      for(int j=i+i;j<=max;j+=i){
        cp_list[j]=false;
      }
    }
  }
}
int main(){
  int s=0,e=0,ans=-1,size,num=0,n;
  bool b[20001];
  cin >> n;
  eratos(b,20000);
  size=n_list.size();
  vector<vector<int>> dp(size,vector<int>(n+1,-1));
  for(int i=0;i<size;i++){
    dp[i][0]=0;
  }
  dp[0][n_list[0]]=1;
  for(int i=1;i<size;i++){
    for(int j=0;j<=n;j++){
      dp[i][j]=dp[i-1][j];
      if(j-n_list[i]>=0&&dp[i-1][j-n_list[i]]!=FALSE){
        dp[i][j]=max(dp[i][j],dp[i-1][j-n_list[i]]+1);
      }
    }
  }
  if(dp[size-1][n]==FALSE) cout <<"-1\n";
  else cout << dp[size-1][n]<<endl;
}
0