結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー kohei2019kohei2019
提出日時 2022-02-01 20:49:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 66,156 KB
最終ジャッジ日時 2024-06-11 09:13:49
合計ジャッジ時間 2,460 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 43 ms
59,136 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 67 ms
66,048 KB
testcase_09 AC 63 ms
64,256 KB
testcase_10 AC 43 ms
59,392 KB
testcase_11 AC 43 ms
59,392 KB
testcase_12 AC 53 ms
63,872 KB
testcase_13 AC 50 ms
62,720 KB
testcase_14 AC 50 ms
62,464 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 52 ms
62,976 KB
testcase_19 WA -
testcase_20 AC 51 ms
62,976 KB
testcase_21 AC 54 ms
62,208 KB
testcase_22 WA -
testcase_23 AC 62 ms
64,384 KB
testcase_24 AC 60 ms
63,744 KB
testcase_25 AC 64 ms
64,256 KB
testcase_26 AC 61 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

gx,gy,N,F = map(int,input().split())
lsxyz = [list(map(int,input().split())) for i in range(N)]
inf = float('INF')
dp = [[inf]*(gy+1) for i in range(gx+1)]
dp[0][0] = 0

for i in range(gx+1):
    for j in range(gy+1):
        if 0 <= i-1:
            dp[i][j] = min(dp[i][j],dp[i-1][j]+F)
        if 0 <= j-1:
            dp[i][j] = min(dp[i][j],dp[i][j-1]+F)
        for x,y,z in lsxyz:
            if 0 <= i-x and 0 <= j-y:
                dp[i][j] = min(dp[i][j],dp[i-x][j-y]+z)
print(dp[-1][-1])
0