結果

問題 No.1283 Extra Fee
ユーザー ayaoniayaoni
提出日時 2020-11-06 23:19:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,323 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 87,176 KB
実行使用メモリ 383,724 KB
最終ジャッジ日時 2023-09-29 19:36:56
合計ジャッジ時間 11,652 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
71,492 KB
testcase_01 AC 93 ms
71,372 KB
testcase_02 AC 97 ms
71,452 KB
testcase_03 AC 92 ms
71,548 KB
testcase_04 AC 95 ms
71,656 KB
testcase_05 AC 94 ms
71,452 KB
testcase_06 AC 99 ms
71,744 KB
testcase_07 AC 97 ms
71,520 KB
testcase_08 AC 103 ms
76,040 KB
testcase_09 AC 98 ms
72,068 KB
testcase_10 AC 100 ms
72,144 KB
testcase_11 AC 483 ms
99,240 KB
testcase_12 AC 522 ms
104,800 KB
testcase_13 AC 502 ms
99,248 KB
testcase_14 AC 1,203 ms
170,776 KB
testcase_15 AC 1,835 ms
220,196 KB
testcase_16 AC 616 ms
109,164 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import collections,heapq
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


class Dijkstra:
    def __init__(self):
        self.e = collections.defaultdict(list)

    def add(self, u, v, d, directed=False):
        if directed is False:  # 無向グラフの場合
            self.e[u].append([v, d])
            self.e[v].append([u, d])
        else:  # 有向グラフの場合
            self.e[u].append([v, d])

    def delete(self, u, v):
        self.e[u] = [_ for _ in self.e[u] if _[0] != v]

    def search(self, s):  # sから各頂点までの最短距離
        d = collections.defaultdict(lambda: float('inf'))
        d[s] = 0
        q = []
        heapq.heappush(q, (0, s))
        v = collections.defaultdict(bool)
        while len(q):
            k, u = heapq.heappop(q)
            if v[u]:
                continue
            v[u] = True

            for uv, ud in self.e[u]:
                if v[uv]:
                    continue
                vd = k + ud
                if d[uv] > vd:
                    d[uv] = vd
                    heapq.heappush(q, (vd, uv))
        return d


N,M = MI()
HWC = [tuple(MI()) for _ in range(M)]

Di = Dijkstra()
for i in range(1,N+1):
    for j in range(1,N):
        Di.add((i,j),(i,j+1),1,directed=False)
for i in range(1,N):
    for j in range(1,N+1):
        Di.add((i,j),(i+1,j),1,directed=False)

for h,w,c in HWC:
    if h >= 2:
        Di.delete((h-1,w),(h,w))
        Di.add((h-1,w),(h,w),c+1,directed=True)
    if h <= N-1:
        Di.delete((h+1,w),(h,w))
        Di.add((h+1,w),(h,w),c+1,directed=True)
    if w >= 2:
        Di.delete((h,w-1),(h,w))
        Di.add((h,w-1),(h,w),c+1,directed=True)
    if w <= N-1:
        Di.delete((h,w+1),(h,w))
        Di.add((h,w+1),(h,w),c+1,directed=True)

dist = Di.search((1,1))
dist2 = Di.search((N,N))
ans = dist[(N,N)]
for h,w,c in HWC:
    ans = min(ans,dist[(h,w)]+dist2[(h,w)]-2*c)
print(ans)
0