結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 WA -
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 42 ms
59,520 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 64 ms
65,152 KB
testcase_09 AC 66 ms
65,024 KB
testcase_10 AC 46 ms
59,776 KB
testcase_11 AC 48 ms
59,904 KB
testcase_12 AC 58 ms
64,000 KB
testcase_13 AC 54 ms
62,976 KB
testcase_14 AC 61 ms
64,640 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 59 ms
66,432 KB
testcase_19 WA -
testcase_20 AC 58 ms
64,640 KB
testcase_21 AC 55 ms
63,488 KB
testcase_22 WA -
testcase_23 AC 73 ms
67,968 KB
testcase_24 AC 72 ms
67,456 KB
testcase_25 AC 70 ms
67,328 KB
testcase_26 AC 71 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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


DP=[[1<<60]*(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 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