結果

問題 No.385 カップ麺生活
ユーザー legendcn666legendcn666
提出日時 2024-08-18 17:16:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,222 bytes
コンパイル時間 1,588 ms
コンパイル使用メモリ 168,340 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-18 17:16:35
合計ジャッジ時間 2,854 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 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,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 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 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 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,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# include <bits/stdc++.h>
using namespace std;
typedef long long ll; 
# define int long long
# define lc u << 1
# define rc u << 1 | 1
# define fi first
# define se second
const int N = 10005;

int m, n;
int a[N];
bool com[N];
int pri[N], tot;
void sieve (int n)
{
    for (int i = 2; i <= n; i ++ )
    {
        if (!com[i]) pri[ ++ tot] = i;
        for (int j = 1; j <= tot && i * pri[j] <= n; j ++ )
        {
            com[i * pri[j]] = 1;
            if (i % pri[j] == 0) break;
        }
    }
}
int dp[N]; // i元最多可以买几个面包
signed main ()
{
    // freopen ("prime.in", "r", stdin); freopen ("prime.out", "w", stdout);
    sieve (10000);
    scanf ("%lld%lld", &m, &n);
    for (int i = 1; i <= n; i ++ ) scanf ("%lld", &a[i]); 
    memset (dp, -0x3f3f3f3f, sizeof dp);
    dp[0] = 0;
	for (int i = 1; i <= n; i ++ )
    {
		for (int j = a[i]; j <= m; j ++ )
            dp[j] = max (dp[j], dp[j - a[i]] + 1);
	}
    int ans = 0;
    for (int i = 1; i <= tot; i ++ )
    {
        if (pri[i] > m) break;
        if (dp[m - pri[i]] > 0)
            ans += dp[m - pri[i]];
    }
    int mx = 0;
    for (int i = 1; i <= m; i ++ ) mx = max (mx, dp[i]);
    printf ("%lld\n", ans + mx);
	return 0;
}
0