結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー H20H20
提出日時 2021-01-18 11:11:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-05-08 01:13:30
合計ジャッジ時間 2,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 41 ms
57,856 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 71 ms
75,520 KB
testcase_09 AC 72 ms
74,240 KB
testcase_10 AC 48 ms
60,672 KB
testcase_11 AC 49 ms
61,696 KB
testcase_12 AC 53 ms
61,952 KB
testcase_13 AC 52 ms
62,848 KB
testcase_14 AC 53 ms
63,616 KB
testcase_15 AC 51 ms
63,232 KB
testcase_16 AC 51 ms
62,080 KB
testcase_17 AC 52 ms
63,360 KB
testcase_18 AC 51 ms
62,464 KB
testcase_19 AC 54 ms
64,640 KB
testcase_20 AC 48 ms
61,948 KB
testcase_21 AC 50 ms
61,440 KB
testcase_22 AC 62 ms
72,576 KB
testcase_23 AC 71 ms
75,648 KB
testcase_24 AC 60 ms
73,124 KB
testcase_25 AC 59 ms
72,704 KB
testcase_26 AC 63 ms
73,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

GX,GY,N,F = map(int,input().split())
DP = [[0] * (GX+1) for i in range(GY+1)]
for i in range(N):
    tx,ty,tc = map(int,input().split())
    for y in reversed(range(GY+1)):
        for x in  reversed(range(GX+1)):
            if DP[y][x]>0 and y+ty<=GY and x+tx<=GX:
                DP[y+ty][x+tx] = min(DP[y+ty][x+tx],DP[y][x]+tc)
                if DP[y+ty][x+tx]==0:
                    DP[y+ty][x+tx]=DP[y][x]+tc
    DP[ty][tx] = min(DP[ty][tx],tc)
    if DP[ty][tx]==0:
        DP[ty][tx] = tc
ans = (GX+GY)*F
for y in range(GY+1):
    for x in range(GX+1):
        if DP[y][x] > 0:
            ans = min(ans,((GY+GX-y-x))*F+DP[y][x])

print(ans)
0