結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー ntudantuda
提出日時 2024-12-30 20:02:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 62,976 KB
最終ジャッジ日時 2024-12-30 20:02:25
合計ジャッジ時間 2,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
51,712 KB
testcase_01 AC 47 ms
51,584 KB
testcase_02 AC 44 ms
51,840 KB
testcase_03 AC 45 ms
51,584 KB
testcase_04 WA -
testcase_05 AC 43 ms
52,224 KB
testcase_06 AC 44 ms
51,712 KB
testcase_07 AC 45 ms
52,096 KB
testcase_08 AC 81 ms
62,976 KB
testcase_09 AC 70 ms
62,848 KB
testcase_10 AC 55 ms
60,288 KB
testcase_11 AC 52 ms
58,368 KB
testcase_12 AC 53 ms
59,264 KB
testcase_13 AC 64 ms
62,080 KB
testcase_14 AC 59 ms
61,696 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 51 ms
59,136 KB
testcase_19 WA -
testcase_20 AC 52 ms
59,136 KB
testcase_21 AC 53 ms
58,368 KB
testcase_22 WA -
testcase_23 AC 84 ms
61,440 KB
testcase_24 AC 58 ms
60,800 KB
testcase_25 AC 61 ms
61,440 KB
testcase_26 AC 57 ms
61,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Gx, Gy, N, F = map(int, input().split())
XYC = [list(map(int, input().split())) for _ in range(N)]
INF = 10 ** 6
dp = [[INF] * (Gy + 1) for _ in range(Gx + 1)]
dp[0][0] = 0
ans = (Gx + Gy) * F
for x, y, c in XYC:
    for i in range(Gx - x + 1):
        for j in range(Gy - y + 1):
            if dp[i][j] != INF:
                if dp[i + x][j + y] > dp[i][j] + c:
                    dp[i + x][j + y] = dp[i][j] + c
                    ans = min(ans, dp[i + x][j + y] + (Gx - i - x + Gy - j - y) * F)
print(ans)
0