結果

問題 No.1565 Union
ユーザー roarisroaris
提出日時 2021-07-20 16:55:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,224 KB
最終ジャッジ日時 2024-11-16 23:02:00
合計ジャッジ時間 7,448 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 50 ms
53,248 KB
testcase_02 AC 45 ms
53,248 KB
testcase_03 AC 44 ms
53,504 KB
testcase_04 AC 45 ms
53,504 KB
testcase_05 AC 42 ms
53,248 KB
testcase_06 AC 42 ms
53,504 KB
testcase_07 AC 43 ms
53,632 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 46 ms
53,632 KB
testcase_10 AC 130 ms
80,384 KB
testcase_11 AC 197 ms
92,288 KB
testcase_12 AC 180 ms
84,992 KB
testcase_13 AC 114 ms
80,128 KB
testcase_14 AC 213 ms
90,112 KB
testcase_15 AC 316 ms
98,560 KB
testcase_16 AC 252 ms
98,176 KB
testcase_17 AC 325 ms
98,944 KB
testcase_18 AC 282 ms
98,560 KB
testcase_19 AC 299 ms
99,072 KB
testcase_20 AC 152 ms
99,840 KB
testcase_21 AC 156 ms
100,224 KB
testcase_22 AC 164 ms
99,840 KB
testcase_23 AC 157 ms
99,840 KB
testcase_24 AC 159 ms
99,840 KB
testcase_25 AC 176 ms
99,840 KB
testcase_26 AC 175 ms
100,096 KB
testcase_27 AC 177 ms
99,840 KB
testcase_28 AC 179 ms
100,096 KB
testcase_29 AC 174 ms
99,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

def bfs():
    q = deque([0])
    dist = [-1]*N
    dist[0] = 0
    
    while q:
        v = q.popleft()
        
        for nv in G[v]:
            if dist[nv]==-1:
                dist[nv] = dist[v]+1
                q.append(nv)
    
    return dist[-1]

N, M = map(int, input().split())
G = [[] for _ in range(N)]

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

print(bfs())
0