結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー titiatitia
提出日時 2023-06-27 04:54:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 64,640 KB
最終ジャッジ日時 2024-07-03 23:20:42
合計ジャッジ時間 2,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 42 ms
58,240 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 56 ms
64,384 KB
testcase_09 AC 54 ms
64,088 KB
testcase_10 AC 49 ms
61,936 KB
testcase_11 AC 45 ms
59,264 KB
testcase_12 AC 49 ms
62,208 KB
testcase_13 AC 50 ms
62,464 KB
testcase_14 AC 56 ms
62,592 KB
testcase_15 AC 51 ms
60,800 KB
testcase_16 AC 49 ms
61,568 KB
testcase_17 AC 49 ms
61,696 KB
testcase_18 AC 47 ms
60,672 KB
testcase_19 AC 49 ms
61,568 KB
testcase_20 AC 48 ms
61,696 KB
testcase_21 AC 45 ms
61,056 KB
testcase_22 AC 55 ms
63,488 KB
testcase_23 AC 58 ms
64,640 KB
testcase_24 AC 54 ms
63,744 KB
testcase_25 AC 56 ms
63,744 KB
testcase_26 AC 54 ms
64,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

for x,y,c in C:
    for i in range(Gx,-1,-1):
        for j in range(Gy,-1,-1):
            if DP[i][j]==1<<60:
                continue
            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)

ANS=1<<60

for i in range(Gx+1):
    for j in range(Gy+1):
        ANS=min(ANS,DP[i][j]+(Gx-i)*F+(Gy-j)*F)

print(ANS)
0