結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,160 KB
testcase_01 AC 33 ms
51,940 KB
testcase_02 AC 35 ms
52,988 KB
testcase_03 AC 32 ms
53,304 KB
testcase_04 AC 35 ms
53,356 KB
testcase_05 AC 38 ms
52,068 KB
testcase_06 AC 39 ms
58,908 KB
testcase_07 AC 36 ms
52,208 KB
testcase_08 AC 53 ms
65,132 KB
testcase_09 AC 55 ms
64,840 KB
testcase_10 AC 41 ms
60,264 KB
testcase_11 AC 39 ms
58,908 KB
testcase_12 AC 42 ms
59,864 KB
testcase_13 AC 43 ms
61,204 KB
testcase_14 AC 44 ms
62,284 KB
testcase_15 AC 41 ms
61,840 KB
testcase_16 AC 43 ms
60,832 KB
testcase_17 AC 44 ms
61,696 KB
testcase_18 AC 43 ms
62,120 KB
testcase_19 AC 43 ms
62,580 KB
testcase_20 AC 45 ms
62,612 KB
testcase_21 AC 42 ms
60,608 KB
testcase_22 AC 48 ms
64,772 KB
testcase_23 AC 48 ms
63,052 KB
testcase_24 AC 47 ms
62,504 KB
testcase_25 AC 49 ms
63,344 KB
testcase_26 AC 47 ms
63,088 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