結果

問題 No.385 カップ麺生活
ユーザー 👑 はまやんはまやんはまやんはまやん
提出日時 2016-07-02 07:12:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 1,569 ms
コンパイル使用メモリ 165,048 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-15 07:30:08
合計ジャッジ時間 2,782 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)

int M, N;
int C[20];
int dp[21][10001];
//-----------------------------------------------------------------
bool isprime(int n) {
	if (n <= 1) return false;
	for (int i = 2; i * i <= n; i++)
		if (n % i == 0) return false;
	return true;
}
//-----------------------------------------------------------------
int main() {
	scanf("%d %d", &M, &N);
	rep(i, 0, N) scanf("%d", &C[i]);

	rep(i, 0, N + 1) rep(j, 0, M + 1) dp[i][j] = -1;

	dp[0][M] = 0;
	rep(i, 0, N) rep(j, 0, M + 1) if (0 <= dp[i][j]) {
		rep(k, 0, j / C[i]+1)
			dp[i + 1][j - k * C[i]] = max(dp[i + 1][j - k * C[i]], dp[i][j] + k);
	}

	int ans = 0;
	int _max = 0;
	rep(j, 0, M + 1) if (0 <= dp[N][j]) {
		if (isprime(j)) ans += dp[N][j];
		_max = max(_max, dp[N][j]);
	}
	ans += _max;
	printf("%d\n", ans);
}
0