結果

問題 No.1947 質より種類数
ユーザー rlangevinrlangevin
提出日時 2022-12-30 20:07:38
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 689 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 852,352 KB
最終ジャッジ日時 2024-05-04 08:48:28
合計ジャッジ時間 9,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,912 KB
testcase_01 AC 34 ms
52,316 KB
testcase_02 AC 33 ms
53,704 KB
testcase_03 AC 33 ms
53,144 KB
testcase_04 AC 99 ms
88,020 KB
testcase_05 AC 89 ms
83,840 KB
testcase_06 AC 89 ms
83,948 KB
testcase_07 AC 101 ms
86,700 KB
testcase_08 AC 109 ms
88,320 KB
testcase_09 AC 193 ms
124,544 KB
testcase_10 AC 160 ms
110,336 KB
testcase_11 AC 330 ms
184,960 KB
testcase_12 AC 254 ms
151,240 KB
testcase_13 AC 137 ms
103,148 KB
testcase_14 TLE -
testcase_15 AC 961 ms
384,640 KB
testcase_16 MLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

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