結果

問題 No.1947 質より種類数
ユーザー rlangevinrlangevin
提出日時 2022-12-30 20:07:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 689 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 849,372 KB
最終ジャッジ日時 2024-11-25 18:37:44
合計ジャッジ時間 41,672 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 112 ms
88,192 KB
testcase_05 AC 105 ms
83,692 KB
testcase_06 AC 106 ms
83,832 KB
testcase_07 AC 111 ms
86,656 KB
testcase_08 AC 114 ms
88,392 KB
testcase_09 AC 208 ms
124,288 KB
testcase_10 AC 169 ms
109,952 KB
testcase_11 AC 354 ms
185,252 KB
testcase_12 AC 274 ms
151,040 KB
testcase_13 AC 156 ms
102,912 KB
testcase_14 TLE -
testcase_15 AC 1,114 ms
384,384 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 442 ms
161,992 KB
testcase_23 TLE -
testcase_24 AC 112 ms
92,392 KB
testcase_25 AC 105 ms
88,476 KB
testcase_26 AC 88 ms
81,636 KB
testcase_27 AC 109 ms
84,556 KB
testcase_28 AC 103 ms
88,116 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 124 ms
52,280 KB
testcase_32 AC 45 ms
53,404 KB
testcase_33 AC 65 ms
66,200 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline


N, V, C = map(int, readline().split())
v, w = [0] * N, [0] * N
for i in range(N):
    v[i], w[i] = map(int, readline().split())
    
inf = 10 ** 18
dp = [[[-inf] * 2 for i in range(V + 1) ] for j in range(N + 1)]
dp[0][0][0] = 0
for i in range(N):
    for j in range(V + 1):
        dp[i + 1][j][0] = max(dp[i + 1][j][0], dp[i][j][0], dp[i][j][1])
        if j - v[i] >= 0:
            dp[i + 1][j][1] = max(dp[i + 1][j][1], dp[i + 1][j - v[i]][0] + w[i] + C)
            dp[i + 1][j][1] = max(dp[i + 1][j][1], dp[i + 1][j - v[i]][1] + w[i])
            
ans = 0
for i in range(V + 1):
    ans = max(ans, dp[N][i][0], dp[N][i][1])
    
print(ans)
0