結果

問題 No.2866 yuusaan's Knapsack
ユーザー detteiuudetteiuu
提出日時 2024-08-30 22:23:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 103,552 KB
最終ジャッジ日時 2024-09-26 14:36:43
合計ジャッジ時間 4,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,952 KB
testcase_01 AC 46 ms
60,416 KB
testcase_02 AC 48 ms
62,592 KB
testcase_03 AC 43 ms
60,032 KB
testcase_04 AC 44 ms
60,032 KB
testcase_05 AC 43 ms
60,032 KB
testcase_06 AC 166 ms
102,272 KB
testcase_07 AC 130 ms
95,232 KB
testcase_08 AC 153 ms
101,384 KB
testcase_09 AC 138 ms
97,664 KB
testcase_10 AC 148 ms
100,352 KB
testcase_11 AC 117 ms
89,472 KB
testcase_12 AC 135 ms
95,872 KB
testcase_13 AC 127 ms
93,312 KB
testcase_14 AC 135 ms
94,464 KB
testcase_15 AC 152 ms
100,864 KB
testcase_16 AC 126 ms
92,800 KB
testcase_17 AC 145 ms
98,304 KB
testcase_18 AC 113 ms
89,088 KB
testcase_19 AC 160 ms
103,552 KB
testcase_20 AC 132 ms
95,872 KB
testcase_21 AC 141 ms
96,896 KB
testcase_22 AC 132 ms
95,872 KB
testcase_23 AC 159 ms
102,400 KB
testcase_24 AC 128 ms
93,312 KB
testcase_25 AC 143 ms
98,560 KB
testcase_26 AC 94 ms
96,768 KB
testcase_27 AC 45 ms
60,800 KB
testcase_28 AC 144 ms
97,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(N)]
A.sort(key=lambda x:x[1])

MOD = 998244353
INF = 10**18

dp = [[-INF]*20001 for _ in range(N+1)]
dp[0][10000] = 0
for i in range(N):
    v, w = A[i]
    for j in range(20001):
        if dp[i][j] == -INF:
            continue
        dp[i+1][j] = max(dp[i+1][j], dp[i][j])
        if j+w <= 20000:
            dp[i+1][j+w] = max(dp[i+1][j+w], dp[i][j]+v)
MAX = max(dp[-1][:10000+W+1])
cnt = [[0]*20001 for _ in range(N+1)]
cnt[0][10000] = 1
for i in range(N):
    v, w = A[i]
    for j in range(20001):
        if dp[i][j] == -INF:
            continue
        if dp[i][j] == dp[i+1][j]:
            cnt[i+1][j] += cnt[i][j]
            cnt[i+1][j] %= MOD
        if j+w <= 20000 and dp[i][j]+v == dp[i+1][j+w]:
            cnt[i+1][j+w] += cnt[i][j]
            cnt[i+1][j+w] %= MOD

ans = 0
for i in range(10000+W+1):
    if dp[-1][i] == MAX:
        ans += cnt[-1][i]
        ans %= MOD

print(MAX, ans)
0