結果
問題 | No.458 異なる素数の和 |
ユーザー | 波多野充 |
提出日時 | 2021-10-21 13:25:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 219 ms / 2,000 ms |
コード長 | 1,918 bytes |
コンパイル時間 | 3,994 ms |
コンパイル使用メモリ | 262,980 KB |
実行使用メモリ | 180,224 KB |
最終ジャッジ日時 | 2024-09-21 08:48:07 |
合計ジャッジ時間 | 6,089 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 64 ms
53,632 KB |
testcase_02 | AC | 82 ms
69,248 KB |
testcase_03 | AC | 16 ms
14,208 KB |
testcase_04 | AC | 18 ms
17,664 KB |
testcase_05 | AC | 183 ms
150,656 KB |
testcase_06 | AC | 77 ms
65,536 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 183 ms
151,936 KB |
testcase_09 | AC | 5 ms
6,784 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 219 ms
180,224 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 9 ms
9,600 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 72 ms
62,336 KB |
testcase_28 | AC | 216 ms
176,512 KB |
testcase_29 | AC | 4 ms
5,376 KB |
testcase_30 | AC | 46 ms
39,552 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define repd(i, n) for (int i = (int)(n - 1); i >= 0; i--) #define reps(i, a, n) for (int i = (int)(a); i < (int)(n); i++) #define sortu(a) sort(a.begin(), a.end()) #define sortd(a) sort(a.rbegin(), a.rend()) #define YES(n) cout << ((n) ? "YES" : "NO") << endl #define Yes(n) cout << ((n) ? "Yes" : "No") << endl #define spaced(a) do {cout << a[0]; for (int _ = 1; _ < a.size(); _++) cout << " " << a[_]; cout << endl;} while (0) #define all(x) (x).begin(), (x).end() #define pb push_back #define mp make_pair using vi = vector<int>; using ll = long long; using vvi = vector<vector<int>>; using vll = vector<ll>; using vvll = vector<vector<ll>>; using vs = vector<string>; using pii = pair<int, int>; using mint = modint1000000007; const int INF = 1e9; const int MOD = 1e9 + 7; const ll LINF = 1e18; template <class T> bool chmax(T &a, const T &b) {if (a < b) {a = b;return 1;} return 0;} template <class T> bool chmin(T &a, const T &b) {if (b < a) {a = b; return 1;} return 0;} int main() { int n; cin >> n; vector<bool> isPrime(n + 1, true); isPrime[0] = isPrime[1] = false; reps(i, 2, n) { if (!isPrime[i]) continue; for (int j = 2 * i; j <= n; j+= i) { isPrime[j] = false; } } int count = 0; rep(i, n + 1) if (isPrime[i]) count++; vvi dp(count + 2, vi(n + 1)); int index = 0; reps(i, 2, n + 1) { if (isPrime[i]) { index++; dp[index][i] = 1; reps(j, 2, n + 1) { chmax(dp[index][j], dp[index - 1][j]); if (i <= j && dp[index - 1][j - i] > 0) chmax(dp[index][j], dp[index - 1][j - i] + 1); } } } if (dp[count][n] > 0) cout << dp[count][n] << endl; else cout << -1 << endl; return 0; }