結果

問題 No.1565 Union
ユーザー ygd.ygd.
提出日時 2021-06-28 20:05:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 100,112 KB
最終ジャッジ日時 2024-06-25 14:46:37
合計ジャッジ時間 7,031 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,396 KB
testcase_01 AC 44 ms
54,260 KB
testcase_02 AC 45 ms
55,904 KB
testcase_03 AC 46 ms
53,824 KB
testcase_04 AC 43 ms
55,052 KB
testcase_05 AC 43 ms
53,996 KB
testcase_06 AC 42 ms
54,840 KB
testcase_07 AC 44 ms
55,120 KB
testcase_08 AC 42 ms
53,864 KB
testcase_09 AC 42 ms
54,268 KB
testcase_10 AC 153 ms
81,268 KB
testcase_11 AC 218 ms
93,712 KB
testcase_12 AC 213 ms
86,020 KB
testcase_13 AC 117 ms
80,928 KB
testcase_14 AC 275 ms
90,776 KB
testcase_15 AC 372 ms
99,028 KB
testcase_16 AC 296 ms
98,700 KB
testcase_17 AC 368 ms
99,688 KB
testcase_18 AC 367 ms
99,036 KB
testcase_19 AC 366 ms
99,144 KB
testcase_20 AC 202 ms
99,812 KB
testcase_21 AC 207 ms
99,948 KB
testcase_22 AC 207 ms
99,888 KB
testcase_23 AC 210 ms
99,960 KB
testcase_24 AC 207 ms
100,008 KB
testcase_25 AC 223 ms
99,988 KB
testcase_26 AC 228 ms
100,096 KB
testcase_27 AC 228 ms
99,944 KB
testcase_28 AC 228 ms
100,112 KB
testcase_29 AC 216 ms
99,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

    Q = deque([])
    Q.append(0)
    d = [-1]*N
    d[0] = 0
    while Q:
        v = Q.popleft()
        for u in G[v]:
            if d[u] != -1: continue
            d[u] = d[v] + 1
            Q.append(u)
    print(d[N-1])

if __name__ == '__main__':
    main()
0