結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー tcltktcltk
提出日時 2021-01-19 01:19:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,370 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 90,496 KB
最終ジャッジ日時 2024-05-08 16:36:16
合計ジャッジ時間 5,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
89,156 KB
testcase_01 AC 136 ms
89,260 KB
testcase_02 AC 133 ms
89,132 KB
testcase_03 AC 132 ms
89,168 KB
testcase_04 AC 129 ms
89,164 KB
testcase_05 AC 129 ms
89,228 KB
testcase_06 AC 137 ms
89,584 KB
testcase_07 AC 131 ms
89,184 KB
testcase_08 AC 177 ms
90,400 KB
testcase_09 AC 172 ms
90,440 KB
testcase_10 AC 151 ms
89,944 KB
testcase_11 AC 143 ms
89,652 KB
testcase_12 AC 151 ms
89,724 KB
testcase_13 AC 155 ms
89,612 KB
testcase_14 AC 151 ms
90,116 KB
testcase_15 AC 148 ms
90,244 KB
testcase_16 AC 153 ms
89,784 KB
testcase_17 AC 156 ms
90,020 KB
testcase_18 AC 155 ms
89,784 KB
testcase_19 AC 157 ms
89,896 KB
testcase_20 AC 158 ms
89,608 KB
testcase_21 AC 153 ms
89,608 KB
testcase_22 AC 177 ms
90,300 KB
testcase_23 AC 174 ms
90,256 KB
testcase_24 AC 180 ms
90,056 KB
testcase_25 AC 176 ms
89,920 KB
testcase_26 AC 178 ms
90,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """3 3 2 1
# 1 2 2
# 2 1 2
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    Gx, Gy, N, F = map(int, input().split())
    crystals = []
    for _ in range(N):
        _x, _y, _c = map(int, input().split())
        crystals.append((_x, _y, _c))

    dp = [[[10**10 for _ in range(Gy+1)] for _ in range(Gx+1)] for _ in range(N+1)]
    dp[0][0][0] = 0
    for n in range(N):
        for x in range(Gx+1):
            for y in range(Gy+1):
                dp[n+1][x][y] = min(dp[n+1][x][y], dp[n][x][y])
                crystal = crystals[n]
                x1 = x + crystal[0]
                y1 = y + crystal[1]
                if x1 <= Gx and y1 <= Gy:
                    dp[n+1][x1][y1] = min(dp[n+1][x1][y1], dp[n][x][y] + crystal[2])

    cost_min = 10**10
    for x in range(Gx+1):
        for y in range(Gy+1):
            d = (Gx - x) + (Gy - y)
            cost = dp[N][x][y] + F * d
            cost_min = min(cost_min, cost)
    print(cost_min)


if __name__ == '__main__':
    main()
0