結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー 👑 rin204rin204
提出日時 2022-07-05 16:36:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 64,256 KB
最終ジャッジ日時 2024-05-09 11:06:58
合計ジャッジ時間 2,499 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 42 ms
58,240 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 60 ms
64,128 KB
testcase_09 AC 58 ms
64,256 KB
testcase_10 AC 44 ms
59,392 KB
testcase_11 AC 42 ms
58,220 KB
testcase_12 AC 45 ms
60,288 KB
testcase_13 AC 48 ms
60,928 KB
testcase_14 AC 48 ms
61,568 KB
testcase_15 AC 46 ms
60,628 KB
testcase_16 AC 45 ms
60,672 KB
testcase_17 AC 47 ms
60,564 KB
testcase_18 AC 49 ms
61,440 KB
testcase_19 AC 46 ms
61,184 KB
testcase_20 AC 49 ms
62,080 KB
testcase_21 AC 46 ms
60,672 KB
testcase_22 AC 54 ms
63,360 KB
testcase_23 AC 55 ms
62,720 KB
testcase_24 AC 52 ms
62,080 KB
testcase_25 AC 53 ms
62,976 KB
testcase_26 AC 52 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

gx, gy, n, f = map(int, input().split())
dp = [[1 << 30] * (gy + 1) for _ in range(gx + 1)]
dp[0][0] = 0
for _ in range(n):
    x, y, c = map(int, input().split())
    for xx in range(gx, x - 1, -1):
        for yy in range(gy, y - 1, -1):
            dp[xx][yy] = min(dp[xx][yy], dp[xx - x][yy - y] + c)

ans = 1 << 30
for x in range(gx + 1):
    for y in range(gy + 1):
        ans = min(ans, dp[x][y] + (gx - x + gy - y) * f)
print(ans)
0