結果

問題 No.1601 With Animals into Institute
ユーザー ああいいああいい
提出日時 2022-01-10 21:44:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,502 ms / 3,000 ms
コード長 976 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 160,664 KB
最終ジャッジ日時 2024-11-14 11:10:20
合計ジャッジ時間 33,341 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,724 KB
testcase_01 AC 40 ms
54,672 KB
testcase_02 AC 40 ms
54,596 KB
testcase_03 AC 153 ms
78,752 KB
testcase_04 AC 148 ms
78,812 KB
testcase_05 AC 152 ms
79,204 KB
testcase_06 AC 2,253 ms
158,744 KB
testcase_07 AC 2,287 ms
160,460 KB
testcase_08 AC 2,224 ms
158,752 KB
testcase_09 AC 2,433 ms
159,120 KB
testcase_10 AC 2,338 ms
158,076 KB
testcase_11 AC 2,437 ms
160,664 KB
testcase_12 AC 2,278 ms
158,748 KB
testcase_13 AC 2,388 ms
159,408 KB
testcase_14 AC 2,502 ms
160,104 KB
testcase_15 AC 2,378 ms
159,516 KB
testcase_16 AC 2,393 ms
159,068 KB
testcase_17 AC 2,496 ms
159,084 KB
testcase_18 AC 151 ms
78,764 KB
testcase_19 AC 152 ms
79,352 KB
testcase_20 AC 157 ms
78,664 KB
testcase_21 AC 161 ms
78,732 KB
testcase_22 AC 150 ms
78,784 KB
testcase_23 AC 153 ms
78,728 KB
testcase_24 AC 160 ms
78,856 KB
testcase_25 AC 157 ms
79,276 KB
testcase_26 AC 162 ms
78,780 KB
testcase_27 AC 40 ms
54,240 KB
testcase_28 AC 40 ms
53,144 KB
testcase_29 AC 39 ms
52,824 KB
testcase_30 AC 39 ms
53,348 KB
testcase_31 AC 40 ms
54,420 KB
testcase_32 AC 41 ms
53,480 KB
testcase_33 AC 40 ms
53,248 KB
testcase_34 AC 41 ms
53,840 KB
testcase_35 AC 41 ms
53,204 KB
testcase_36 AC 40 ms
53,288 KB
testcase_37 AC 41 ms
53,988 KB
testcase_38 AC 40 ms
53,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

G = [[] for _ in range(N+1)]
for _ in range(M):
    a,b,c,x = map(int,input().split())
    G[a].append((b,c,x>0))
    G[b].append((a,c,x>0))
import heapq
q = []
heapq.heapify(q)
C = 10 ** 18
dist = [[C] * 2 for _ in range(N+1)]
dist[N][0] = 0
heapq.heappush(q,(0,N,False))
while q:
    d,now,flag = heapq.heappop(q)
    if flag:
        if d > dist[now][1]:continue
        for v,c,x in G[now]:
            if dist[v][1] > d + c:
                dist[v][1] = d + c
                heapq.heappush(q,(d+c,v,True))
    else:
        if d > dist[now][0] or d > dist[now][1]:continue
        for v,c,x in G[now]:
            if x:
                if dist[v][1] > d + c:
                    dist[v][1] = d+c
                    heapq.heappush(q,(d+c,v,True))
            else:
                if dist[v][0] > d + c:
                    dist[v][0] = d + c
                    heapq.heappush(q,(d+c,v,False))
for i in range(1,N):
    print(dist[i][1])
0