結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー 👑 KazunKazun
提出日時 2021-02-26 18:49:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,078 ms / 2,000 ms
コード長 1,252 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 174,848 KB
最終ジャッジ日時 2024-10-02 10:40:36
合計ジャッジ時間 5,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,992 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 41 ms
52,864 KB
testcase_03 AC 41 ms
53,504 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 43 ms
53,760 KB
testcase_06 AC 138 ms
78,388 KB
testcase_07 AC 39 ms
52,864 KB
testcase_08 AC 1,078 ms
171,032 KB
testcase_09 AC 944 ms
174,848 KB
testcase_10 AC 97 ms
76,544 KB
testcase_11 AC 101 ms
76,928 KB
testcase_12 AC 72 ms
72,064 KB
testcase_13 AC 77 ms
75,264 KB
testcase_14 AC 177 ms
82,476 KB
testcase_15 AC 110 ms
77,312 KB
testcase_16 AC 55 ms
64,128 KB
testcase_17 AC 112 ms
79,104 KB
testcase_18 AC 130 ms
80,256 KB
testcase_19 AC 96 ms
77,568 KB
testcase_20 AC 91 ms
77,588 KB
testcase_21 AC 62 ms
67,328 KB
testcase_22 AC 178 ms
85,364 KB
testcase_23 AC 164 ms
83,544 KB
testcase_24 AC 120 ms
82,320 KB
testcase_25 AC 79 ms
80,896 KB
testcase_26 AC 136 ms
83,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Heap_Point:
        def __init__(self,x,d):
            self.d=d
            self.x=x

        def __str__(self):
            return "(point:{}, dist:{})".format(self.x,self.d)

        def __repr__(self):
            return str(self)

        def __lt__(self,other):
            return self.d<other.d

        def __iter__(self):
            yield from (self.x,self.d)
#================================================
from heapq import heappop,heappush

Gx,Gy,N,F=map(int,input().split())
P=["*"]
for _ in range(N):
    x,y,c=map(int,input().split())
    P.append((x,y,c))

inf=float("inf")
T=[[[inf]*(N+1) for _ in range(Gy+1)] for __ in range(Gx+1)]
T[0][0][0]=0
Q=[Heap_Point((0,0,0),0)]

while Q:
    p,d=heappop(Q)
    x,y,k=p

    if x==Gx and y==Gy:
        break

    if T[x][y][k]<d:
        continue

    if x<Gx and T[x+1][y][k]>d+F:
        T[x+1][y][k]=d+F
        heappush(Q,Heap_Point((x+1,y,k),d+F))

    if y<Gy and T[x][y+1][k]>d+F:
        T[x][y+1][k]=d+F
        heappush(Q,Heap_Point((x,y+1,k),d+F))

    for i,q in enumerate(P[k+1:],k+1):
        a,b,c=q
        if 0<=x+a<=Gx and 0<=y+b<=Gy and T[x+a][y+b][i]>d+c:
            T[x+a][y+b][i]=d+c
            heappush(Q,Heap_Point((x+a,y+b,i),d+c))

print(min(T[Gx][Gy]))
0