結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー ntudantuda
提出日時 2024-12-30 20:11:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 72,832 KB
最終ジャッジ日時 2024-12-30 20:11:40
合計ジャッジ時間 2,921 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
52,096 KB
testcase_01 AC 50 ms
51,712 KB
testcase_02 AC 46 ms
51,712 KB
testcase_03 AC 47 ms
51,584 KB
testcase_04 AC 46 ms
51,840 KB
testcase_05 AC 47 ms
52,096 KB
testcase_06 AC 48 ms
51,840 KB
testcase_07 AC 50 ms
51,712 KB
testcase_08 AC 82 ms
72,832 KB
testcase_09 AC 79 ms
72,320 KB
testcase_10 AC 60 ms
61,056 KB
testcase_11 AC 52 ms
58,752 KB
testcase_12 AC 58 ms
60,032 KB
testcase_13 AC 57 ms
60,544 KB
testcase_14 AC 65 ms
62,208 KB
testcase_15 AC 52 ms
59,392 KB
testcase_16 AC 56 ms
59,520 KB
testcase_17 AC 56 ms
59,520 KB
testcase_18 AC 60 ms
60,672 KB
testcase_19 AC 60 ms
60,672 KB
testcase_20 AC 59 ms
60,160 KB
testcase_21 AC 58 ms
59,136 KB
testcase_22 AC 67 ms
63,616 KB
testcase_23 AC 63 ms
64,256 KB
testcase_24 AC 65 ms
63,360 KB
testcase_25 AC 68 ms
64,384 KB
testcase_26 AC 66 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Gx, Gy, N, F = map(int, input().split())
XYC = [list(map(int, input().split())) for _ in range(N)]
INF = 10 ** 10
dp = [[INF] * (Gy + 1) for _ in range(Gx + 1)]
dp[0][0] = 0
ans = (Gx + Gy) * F
for x, y, c in XYC:
    for i in reversed(range(Gx - x + 1)):
        for j in reversed(range(Gy - y + 1)):
            if dp[i][j] != INF:
                if dp[i + x][j + y] > dp[i][j] + c:
                    dp[i + x][j + y] = dp[i][j] + c
                    ans = min(ans, dp[i + x][j + y] + (Gx - i - x + Gy - j - y) * F)
print(ans)
0