結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー tcltktcltk
提出日時 2021-01-19 01:19:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 1,370 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 90,224 KB
最終ジャッジ日時 2024-12-14 21:58:59
合計ジャッジ時間 5,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
89,096 KB
testcase_01 AC 138 ms
88,840 KB
testcase_02 AC 137 ms
89,208 KB
testcase_03 AC 136 ms
88,772 KB
testcase_04 AC 140 ms
89,164 KB
testcase_05 AC 138 ms
88,828 KB
testcase_06 AC 143 ms
88,980 KB
testcase_07 AC 139 ms
88,904 KB
testcase_08 AC 186 ms
90,196 KB
testcase_09 AC 184 ms
89,972 KB
testcase_10 AC 160 ms
89,840 KB
testcase_11 AC 153 ms
89,456 KB
testcase_12 AC 159 ms
89,164 KB
testcase_13 AC 161 ms
89,556 KB
testcase_14 AC 161 ms
89,940 KB
testcase_15 AC 157 ms
89,340 KB
testcase_16 AC 163 ms
89,820 KB
testcase_17 AC 162 ms
89,660 KB
testcase_18 AC 164 ms
89,708 KB
testcase_19 AC 163 ms
89,628 KB
testcase_20 AC 162 ms
89,804 KB
testcase_21 AC 156 ms
89,896 KB
testcase_22 AC 183 ms
90,008 KB
testcase_23 AC 183 ms
90,224 KB
testcase_24 AC 183 ms
89,752 KB
testcase_25 AC 182 ms
89,896 KB
testcase_26 AC 183 ms
89,988 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