結果

問題 No.1601 With Animals into Institute
ユーザー H20H20
提出日時 2021-07-11 20:46:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,426 ms / 3,000 ms
コード長 2,124 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 277,064 KB
最終ジャッジ日時 2024-07-02 03:14:51
合計ジャッジ時間 32,849 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,400 KB
testcase_01 AC 50 ms
54,784 KB
testcase_02 AC 48 ms
54,784 KB
testcase_03 AC 185 ms
80,556 KB
testcase_04 AC 181 ms
80,640 KB
testcase_05 AC 180 ms
80,512 KB
testcase_06 AC 2,114 ms
273,412 KB
testcase_07 AC 2,138 ms
272,812 KB
testcase_08 AC 2,172 ms
273,508 KB
testcase_09 AC 2,376 ms
276,072 KB
testcase_10 AC 2,426 ms
277,064 KB
testcase_11 AC 2,242 ms
276,668 KB
testcase_12 AC 2,235 ms
276,404 KB
testcase_13 AC 2,251 ms
276,436 KB
testcase_14 AC 2,228 ms
276,180 KB
testcase_15 AC 2,304 ms
275,464 KB
testcase_16 AC 2,249 ms
275,396 KB
testcase_17 AC 2,279 ms
275,660 KB
testcase_18 AC 201 ms
81,272 KB
testcase_19 AC 194 ms
81,100 KB
testcase_20 AC 191 ms
81,500 KB
testcase_21 AC 193 ms
81,064 KB
testcase_22 AC 186 ms
80,640 KB
testcase_23 AC 186 ms
80,668 KB
testcase_24 AC 186 ms
80,768 KB
testcase_25 AC 193 ms
81,400 KB
testcase_26 AC 191 ms
81,160 KB
testcase_27 AC 48 ms
54,528 KB
testcase_28 AC 47 ms
54,912 KB
testcase_29 AC 48 ms
54,784 KB
testcase_30 AC 48 ms
55,040 KB
testcase_31 AC 48 ms
54,912 KB
testcase_32 AC 47 ms
55,040 KB
testcase_33 AC 49 ms
54,784 KB
testcase_34 AC 46 ms
54,656 KB
testcase_35 AC 49 ms
55,168 KB
testcase_36 AC 48 ms
54,528 KB
testcase_37 AC 48 ms
55,040 KB
testcase_38 AC 49 ms
55,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import heapq


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

    def add(self, u, v, d, directed=False):
        """
        #0-indexedでなくてもよいことに注意
        #u = from, v = to, d = cost
        #directed = Trueなら、有向グラフである
        """
        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]
        self.e[v] = [_ for _ in self.e[v] if _[0] != u]

    def Dijkstra_search(self, s):
        """
        #0-indexedでなくてもよいことに注意
        #:param s: 始点
        #:return: 始点から各点までの最短経路と最短経路を求めるのに必要なprev
        """
        d = collections.defaultdict(lambda: float('inf'))
        prev = collections.defaultdict(lambda: None)
        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
                    prev[uv] = u
                    heapq.heappush(q, (vd, uv))

        return d, prev

    def getDijkstraShortestPath(self, start, goal):
        _, prev = self.Dijkstra_search(start)
        shortestPath = []
        node = goal
        while node is not None:
            shortestPath.append(node)
            node = prev[node]
        return shortestPath[::-1]

N, M = map(int, input().split())
ABCX = [list(map(int, input().split())) for i in range(M)]
graph = Dijkstra()
for a,b,c,x in ABCX:
    graph.add(a,b,c)
    graph.add(-a,-b,c)
    if x>0:
        graph.add(a,-b,c)
        graph.add(-a,b,c)
        
result,_ = graph.Dijkstra_search(-N)
for i in range(1,N):
    print(result[i])
0