結果

問題 No.385 カップ麺生活
ユーザー Mr.SpockMr.Spock
提出日時 2020-11-19 00:11:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 978 bytes
コンパイル時間 1,607 ms
コンパイル使用メモリ 170,148 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-30 15:19:17
合計ジャッジ時間 3,290 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
4,380 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 2 ms
4,376 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int nax = 1e4 + 7;
vector<int>prime(nax, true);
void is_prime() {
	prime[0] = false;
	prime[1] = false;
	for (int i = 2; i < nax; i++) {
		if (prime[i] && ll(i * i) < nax) {
			for (int j = i * i; j * j <= nax; j += i) {
				prime[j] = false;
			}
		}
	}
}
int main() {
// #ifndef ONLINE_JUDGE
// 	freopen("input.txt", "r", stdin);
// 	freopen("output.txt", "w", stdout);
// #endif
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	int n, m;
	cin >> m >> n;
	is_prime();
	vector<int>v(n);
	for (int i = 0; i < n; i++) {
		cin >> v[i];
	}
	sort(v.begin(), v.end());
	vector<int>dp(nax, -1);
	dp[m] = 0;
	for (int rem = m; rem >= 0; rem--) {
		for (int rep = 0; rep < n; rep++) {
			if (rem - v[rep] >= 0) {
				dp[rem - v[rep]] = max(1 + dp[rem], dp[rem - v[rep]]);
			}
		}
	}
	int ans = 0;
	for (int i = 0; i <= m; i++) {
		if (prime[i] && dp[i] != -1) {
			ans += dp[i];
		}
	}
	cout << ans << endl;
}
0