結果
問題 | No.458 異なる素数の和 |
ユーザー | Shibuyap |
提出日時 | 2020-03-09 02:51:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,400 bytes |
コンパイル時間 | 1,919 ms |
コンパイル使用メモリ | 168,276 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 20:29:01 |
合計ジャッジ時間 | 3,691 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 33 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 33 ms
5,248 KB |
testcase_11 | AC | 32 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | AC | 33 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 33 ms
5,248 KB |
testcase_17 | AC | 33 ms
5,248 KB |
testcase_18 | AC | 33 ms
5,248 KB |
testcase_19 | AC | 33 ms
5,248 KB |
testcase_20 | AC | 33 ms
5,248 KB |
testcase_21 | AC | 33 ms
5,248 KB |
testcase_22 | AC | 33 ms
5,248 KB |
testcase_23 | WA | - |
testcase_24 | AC | 33 ms
5,248 KB |
testcase_25 | AC | 32 ms
5,248 KB |
testcase_26 | AC | 33 ms
5,248 KB |
testcase_27 | AC | 32 ms
5,248 KB |
testcase_28 | AC | 32 ms
5,248 KB |
testcase_29 | WA | - |
testcase_30 | AC | 33 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (n); ++i) #define rrep(i,n) for(int i = 1; i <= (n); ++i) #define drep(i,n) for(int i = (n)-1; i >= 0; --i) #define srep(i,s,t) for (int i = s; i < t; ++i) using namespace std; typedef long long int ll; typedef pair<int,int> P; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<ll> vl; typedef vector<P> vp; #define dame { puts("-1"); return 0;} #define yn {puts("Yes");}else{puts("No");} /* Max_Prime以下の素数をprimes[]に格納 */ const int Max_Prime = 21000; int tmp_primes[Max_Prime]; vector<int> primes; void PrimeInit() { rep(i,Max_Prime)tmp_primes[i] = 1; tmp_primes[0] = 0; tmp_primes[1] = 0; rep(i,Max_Prime){ if(tmp_primes[i] == 0)continue; int j = 2; while(i * j <= Max_Prime){ tmp_primes[i*j] = 0; j++; } } rep(i,Max_Prime){ if(tmp_primes[i])primes.push_back(i); } } int main(){ PrimeInit(); int dp[21000] = {}; int i = 0; while(primes[i] <= 20000){ int x = primes[i]; int dp2[21000] = {}; rep(j,21000)dp2[j] = dp[j]; srep(j,x,20001){ dp2[j] = max(dp[j], dp[j-x] + 1); } rep(j,21000)dp[j] = dp2[j]; i++; } int n; cin >> n; if(dp[n] == 0)dp[n] = -1; cout << dp[n] << endl; return 0; }