結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー titiatitia
提出日時 2023-06-27 04:49:00
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 474 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 69,256 KB
最終ジャッジ日時 2024-07-03 23:15:54
合計ジャッジ時間 2,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,924 KB
testcase_01 AC 37 ms
52,016 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 37 ms
52,140 KB
testcase_06 AC 42 ms
60,728 KB
testcase_07 AC 37 ms
51,996 KB
testcase_08 AC 61 ms
66,096 KB
testcase_09 AC 60 ms
65,616 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 WA -
testcase_23 AC 69 ms
69,056 KB
testcase_24 AC 67 ms
68,320 KB
testcase_25 AC 66 ms
69,016 KB
testcase_26 AC 67 ms
69,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Gx,Gy,N,F=map(int,input().split())

C=[list(map(int,input().split())) for i in range(N)]


DP=[[1<<60]*(Gx+1) for i in range(Gy+1)]
DP[0][0]=0

for i in range(Gx+1):
    for j in range(Gy+1):
        if i+1<Gx+1:
            DP[i+1][j]=min(DP[i+1][j],DP[i][j]+F)

        if j+1<Gy+1:
            DP[i][j+1]=min(DP[i][j+1],DP[i][j]+F)

        for x,y,c in C:
            if i+x<Gx+1 and j+y<Gy+1:
                DP[i+x][j+y]=min(DP[i+x][j+y],DP[i][j]+c)

print(DP[Gx][Gy])
0