結果

問題 No.1565 Union
ユーザー AEnAEn
提出日時 2022-09-03 16:39:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 115,192 KB
最終ジャッジ日時 2024-12-20 16:21:36
合計ジャッジ時間 11,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,668 KB
testcase_01 AC 40 ms
53,420 KB
testcase_02 AC 42 ms
53,828 KB
testcase_03 AC 43 ms
53,856 KB
testcase_04 AC 44 ms
53,940 KB
testcase_05 AC 45 ms
53,872 KB
testcase_06 AC 45 ms
53,928 KB
testcase_07 AC 45 ms
54,252 KB
testcase_08 AC 46 ms
52,768 KB
testcase_09 AC 43 ms
53,092 KB
testcase_10 AC 247 ms
89,436 KB
testcase_11 AC 418 ms
102,448 KB
testcase_12 AC 390 ms
96,748 KB
testcase_13 AC 218 ms
85,220 KB
testcase_14 AC 494 ms
101,912 KB
testcase_15 AC 734 ms
114,792 KB
testcase_16 AC 407 ms
111,260 KB
testcase_17 AC 772 ms
115,192 KB
testcase_18 AC 767 ms
114,536 KB
testcase_19 AC 731 ms
114,692 KB
testcase_20 AC 287 ms
112,960 KB
testcase_21 AC 307 ms
112,884 KB
testcase_22 AC 300 ms
112,664 KB
testcase_23 AC 308 ms
112,864 KB
testcase_24 AC 314 ms
112,556 KB
testcase_25 AC 384 ms
112,880 KB
testcase_26 AC 373 ms
112,776 KB
testcase_27 AC 370 ms
112,984 KB
testcase_28 AC 370 ms
112,940 KB
testcase_29 AC 366 ms
112,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
INF = float('inf')

def dijkstra(s, n):
    dist = [INF] * n
    hq = [(0, s)] # (distance, node)
    dist[s] = 0
    seen = [False] * n # ノードが確定済みかどうか
    while hq:
        dis, v = heappop(hq)
        if dist[v] < dis:
            continue
        seen[v] = True
        for to, cost in G[v]:
            if seen[to] == False and dist[v] + cost < dist[to]:
                dist[to] = dist[v] + cost
                heappush(hq, (dist[to], to))
    return dist

N, M = map(int, input().split())
G = [list() for _ in range(N)]
for i in range(M):
    a, b = map(int, input().split())
    a-=1;b-=1
    G[a].append((b,1))
    G[b].append((a,1))

d = dijkstra(0, N)
print(-1) if d[-1]==INF else print(d[-1])
0