結果
問題 | No.458 異なる素数の和 |
ユーザー | Nasatame |
提出日時 | 2016-12-23 12:53:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 964 bytes |
コンパイル時間 | 1,054 ms |
コンパイル使用メモリ | 90,176 KB |
実行使用メモリ | 170,624 KB |
最終ジャッジ日時 | 2024-05-08 11:39:06 |
合計ジャッジ時間 | 4,475 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
10,624 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
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 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <string> #include <cmath> #include <algorithm> #include <map> using namespace std; typedef pair<int,int> p_i; vector<int> sosuu; int n; map<pair<int,int>,int> dp; int solve(int i,int num){ if(i == sosuu.size() && num != n) return -2 * sosuu.size(); else if(num == n) return 0; if(num > n) return -2 * sosuu.size(); if(dp[p_i(i,num)] != 0) return dp[p_i(i,num)]; return dp[p_i(i,num)] = max( solve(i+1,num+sosuu[i]) + 1, solve(i+1,num) ); } int main(void){ // Here your code ! cin >> n; for(int i = 2; i <= n; i++){ bool f = true; for(int j = 2; j <= sqrt(i); j++){ if(i%j == 0){ f = false; break; } } if(f) sosuu.push_back(i); } int res = solve(0,0); if(res >= 1){ cout << res << endl; }else{ cout << -1 << endl; } }