結果

問題 No.1601 With Animals into Institute
ユーザー brthyyjpbrthyyjp
提出日時 2021-08-23 19:59:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,211 ms / 3,000 ms
コード長 1,154 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 141,004 KB
最終ジャッジ日時 2024-11-07 23:21:52
合計ジャッジ時間 20,887 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,864 KB
testcase_01 AC 44 ms
52,352 KB
testcase_02 AC 45 ms
52,480 KB
testcase_03 AC 126 ms
77,800 KB
testcase_04 AC 124 ms
77,620 KB
testcase_05 AC 131 ms
77,696 KB
testcase_06 AC 1,047 ms
140,724 KB
testcase_07 AC 1,081 ms
140,460 KB
testcase_08 AC 1,075 ms
141,004 KB
testcase_09 AC 1,165 ms
140,148 KB
testcase_10 AC 1,211 ms
140,652 KB
testcase_11 AC 1,150 ms
139,768 KB
testcase_12 AC 1,157 ms
140,144 KB
testcase_13 AC 1,207 ms
140,536 KB
testcase_14 AC 1,129 ms
140,824 KB
testcase_15 AC 1,190 ms
140,188 KB
testcase_16 AC 1,177 ms
140,864 KB
testcase_17 AC 1,127 ms
140,248 KB
testcase_18 AC 129 ms
77,484 KB
testcase_19 AC 127 ms
77,464 KB
testcase_20 AC 127 ms
77,568 KB
testcase_21 AC 132 ms
77,452 KB
testcase_22 AC 128 ms
77,696 KB
testcase_23 AC 124 ms
77,440 KB
testcase_24 AC 126 ms
77,864 KB
testcase_25 AC 134 ms
78,620 KB
testcase_26 AC 131 ms
77,464 KB
testcase_27 AC 43 ms
52,736 KB
testcase_28 AC 44 ms
52,608 KB
testcase_29 AC 44 ms
52,352 KB
testcase_30 AC 49 ms
52,608 KB
testcase_31 AC 46 ms
52,480 KB
testcase_32 AC 44 ms
52,736 KB
testcase_33 AC 44 ms
52,736 KB
testcase_34 AC 44 ms
52,864 KB
testcase_35 AC 44 ms
52,480 KB
testcase_36 AC 44 ms
52,480 KB
testcase_37 AC 44 ms
52,736 KB
testcase_38 AC 45 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
INF = 10**18

def dijkstra(s, edge):
    n = len(edge)
    dist = [INF]*n
    prev = [-1]*n
    dist[s] = 0
    edgelist = []
    heapq.heappush(edgelist,(dist[s], s))
    while edgelist:
        minedge = heapq.heappop(edgelist)
        if dist[minedge[1]] < minedge[0]:
            continue
        v = minedge[1]
        for e in edge[v]:
            if dist[e[1]] > dist[v]+e[0]:
                dist[e[1]] = dist[v]+e[0]
                prev[e[1]] = v
                heapq.heappush(edgelist,(dist[e[1]], e[1]))
    return dist, prev

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n, m = map(int, input().split())
g = [[] for i in range(2*n)]
for i in range(m):
    a, b, c, x = map(int, input().split())
    a, b = a-1, b-1
    a0, a1, b0, b1 = a, a+n, b, b+n
    if x == 0:
        g[a0].append((c, b0))
        g[a1].append((c, b1))
        g[b0].append((c, a0))
        g[b1].append((c, a1))
    else:
        g[a1].append((c, b0))
        g[a1].append((c, b1))
        g[b1].append((c, a0))
        g[b1].append((c, a1))

dist, _ = dijkstra(2*n-1, g)
for i in range(n-1):
    print(dist[i])
0