結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-11 03:13:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 583 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 66,816 KB
最終ジャッジ日時 2024-10-12 18:10:40
合計ジャッジ時間 3,145 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 52 ms
59,904 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 74 ms
65,024 KB
testcase_09 AC 74 ms
65,664 KB
testcase_10 AC 50 ms
60,160 KB
testcase_11 AC 52 ms
59,648 KB
testcase_12 AC 63 ms
64,896 KB
testcase_13 AC 64 ms
64,896 KB
testcase_14 AC 68 ms
65,408 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 68 ms
66,432 KB
testcase_19 WA -
testcase_20 AC 65 ms
65,152 KB
testcase_21 AC 64 ms
64,896 KB
testcase_22 WA -
testcase_23 AC 76 ms
65,792 KB
testcase_24 AC 77 ms
66,688 KB
testcase_25 AC 78 ms
65,792 KB
testcase_26 AC 78 ms
66,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

gx, gy, n, f = map(int, input().split())
XYC = []
for i in range(n):
    x, y, c = map(int, input().split())
    XYC.append((x, y, c))

INF = 10**18
dp = [[INF]*(gx+1) for i in range(gy+1)]
dp[0][0] = 0
for i in range(gy+1):
    for j in range(gx+1):
        for di, dj in (1, 0), (0, 1):
            ni, nj = i+di, j+dj
            if 0 <= ni <= gy and 0 <= nj <= gx:
                dp[ni][nj] = min(dp[ni][nj], dp[i][j]+f)
        for x, y, c in XYC:
            if 0 <= i+y <= gy and 0 <= j+x <= gx:
                dp[i+y][j+x] = min(dp[i+y][j+x], dp[i][j]+c)
print(dp[gy][gx])
0