結果

問題 No.1601 With Animals into Institute
ユーザー rlangevinrlangevin
提出日時 2023-02-25 19:38:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,191 ms / 3,000 ms
コード長 1,381 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 142,456 KB
最終ジャッジ日時 2024-09-13 14:56:49
合計ジャッジ時間 20,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 40 ms
52,864 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 120 ms
77,792 KB
testcase_04 AC 130 ms
77,952 KB
testcase_05 AC 133 ms
78,264 KB
testcase_06 AC 1,149 ms
140,716 KB
testcase_07 AC 1,141 ms
141,652 KB
testcase_08 AC 1,139 ms
141,384 KB
testcase_09 AC 1,164 ms
139,552 KB
testcase_10 AC 1,191 ms
142,456 KB
testcase_11 AC 1,154 ms
138,540 KB
testcase_12 AC 1,143 ms
139,496 KB
testcase_13 AC 1,183 ms
141,592 KB
testcase_14 AC 1,177 ms
139,876 KB
testcase_15 AC 1,143 ms
140,900 KB
testcase_16 AC 1,146 ms
141,360 KB
testcase_17 AC 1,138 ms
139,088 KB
testcase_18 AC 132 ms
78,264 KB
testcase_19 AC 131 ms
78,568 KB
testcase_20 AC 131 ms
78,336 KB
testcase_21 AC 126 ms
78,384 KB
testcase_22 AC 127 ms
78,752 KB
testcase_23 AC 130 ms
78,600 KB
testcase_24 AC 136 ms
78,464 KB
testcase_25 AC 124 ms
77,952 KB
testcase_26 AC 128 ms
78,520 KB
testcase_27 AC 41 ms
52,992 KB
testcase_28 AC 40 ms
52,864 KB
testcase_29 AC 41 ms
52,352 KB
testcase_30 AC 42 ms
52,736 KB
testcase_31 AC 41 ms
52,992 KB
testcase_32 AC 41 ms
52,736 KB
testcase_33 AC 39 ms
52,608 KB
testcase_34 AC 39 ms
52,736 KB
testcase_35 AC 40 ms
53,120 KB
testcase_36 AC 40 ms
52,736 KB
testcase_37 AC 40 ms
52,864 KB
testcase_38 AC 41 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from heapq import heappush, heappop
inf = float('inf')


def dijkstra(s, g, N):
    # ゴールがない場合はg=-1とする。

    def cost(v, m):
        return v * N + m

    dist = [inf] * N
    mindist = [inf] * N
    seen = [False] * N
    Q = [cost(0, s)]
    while Q:
        c, m = divmod(heappop(Q), N)
        if seen[m]:
            continue
        seen[m] = True
        dist[m] = c
        if m == g:
            return dist

        #------heapをアップデートする。--------
        for u, C in G[m]:
            if seen[u]:
                continue
            newdist = dist[m] + C

            #------------------------------------
            if newdist >= mindist[u]:
                continue
            mindist[u] = newdist
            heappush(Q, cost(newdist, u))
    return dist


N, M = map(int, readline().split())
G = [[] for i in range(2 * N)]
for i in range(M):
    A, B, C, X = map(int, readline().split())
    A, B = A - 1, B - 1
    if X:
        G[A].append((B + N, C))
        G[B].append((A + N, C))
        G[A + N].append((B + N, C))
        G[B + N].append((A + N, C))
    else:
        G[A].append((B, C))
        G[B].append((A, C))
        G[A + N].append((B + N, C))
        G[B + N].append((A + N, C))
        
D = dijkstra(N - 1, -1, 2 * N)
for i in range(N - 1):
    print(D[i + N])
0