結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 40 ms
58,104 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 76 ms
75,648 KB
testcase_09 AC 67 ms
74,368 KB
testcase_10 AC 49 ms
60,800 KB
testcase_11 AC 49 ms
61,056 KB
testcase_12 AC 49 ms
62,464 KB
testcase_13 AC 53 ms
63,104 KB
testcase_14 AC 54 ms
63,488 KB
testcase_15 AC 51 ms
62,848 KB
testcase_16 AC 49 ms
62,592 KB
testcase_17 AC 52 ms
63,744 KB
testcase_18 AC 51 ms
62,592 KB
testcase_19 AC 54 ms
64,128 KB
testcase_20 AC 47 ms
61,824 KB
testcase_21 AC 48 ms
61,440 KB
testcase_22 AC 63 ms
73,088 KB
testcase_23 AC 71 ms
75,776 KB
testcase_24 AC 62 ms
72,704 KB
testcase_25 AC 62 ms
72,320 KB
testcase_26 AC 64 ms
73,344 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