結果

問題 No.1565 Union
ユーザー moharan627moharan627
提出日時 2021-06-26 15:25:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,245 ms / 2,000 ms
コード長 1,367 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-09-27 05:50:51
合計ジャッジ時間 17,046 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 33 ms
10,880 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 331 ms
36,736 KB
testcase_11 AC 527 ms
52,224 KB
testcase_12 AC 573 ms
51,712 KB
testcase_13 AC 199 ms
24,704 KB
testcase_14 AC 695 ms
58,368 KB
testcase_15 AC 1,186 ms
73,728 KB
testcase_16 AC 605 ms
71,552 KB
testcase_17 AC 1,228 ms
73,600 KB
testcase_18 AC 1,245 ms
73,600 KB
testcase_19 AC 1,220 ms
73,600 KB
testcase_20 AC 517 ms
78,208 KB
testcase_21 AC 538 ms
78,336 KB
testcase_22 AC 531 ms
78,208 KB
testcase_23 AC 530 ms
78,208 KB
testcase_24 AC 535 ms
78,336 KB
testcase_25 AC 620 ms
78,208 KB
testcase_26 AC 620 ms
78,336 KB
testcase_27 AC 619 ms
78,336 KB
testcase_28 AC 605 ms
78,208 KB
testcase_29 AC 589 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(10 ** 6)
INF = float('inf')
#10**20に変えるのもあり
MOD = 10**9 + 7
MOD2 = 998244353
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    N,M = MI()
    Graph = [[] for n in range(N + 1)]
    for i in range(M):
        A, B = MI()
        Graph[A].append((B,1))
        Graph[B].append((A,1))
    from heapq import heappush, heappop
    def dijkstra(s, n):  # (始点, ノード数)
        dist = [INF] * n
        hq = [(0, s)]  # (distance, node)
        dist[s] = 0
        seen = [False] * n  # ノードが確定済みかどうか
        while hq:
            v = heappop(hq)[1]  # ノードを pop する
            if seen[v]:
                continue
            seen[v] = True
            for to, cost in Graph[v]:  # ノード v に隣接しているノードに対して
                if seen[to] == False and dist[v] + cost < dist[to]:
                    dist[to] = dist[v] + cost
                    heappush(hq, (dist[to], to))
        return dist
    Dist = dijkstra(1, N+1)
    #print(Dist)
    if(Dist[N] == INF):
        print(-1)
    else:
        print(Dist[N])
    return
solve()
0