結果

問題 No.1565 Union
ユーザー convexineqconvexineq
提出日時 2021-07-09 07:36:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 113,624 KB
最終ジャッジ日時 2024-11-29 05:11:37
合計ジャッジ時間 7,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,876 KB
testcase_01 AC 35 ms
52,196 KB
testcase_02 AC 35 ms
52,256 KB
testcase_03 AC 35 ms
52,968 KB
testcase_04 AC 38 ms
52,896 KB
testcase_05 AC 33 ms
52,888 KB
testcase_06 AC 33 ms
52,192 KB
testcase_07 AC 35 ms
52,700 KB
testcase_08 AC 32 ms
52,484 KB
testcase_09 AC 32 ms
53,164 KB
testcase_10 AC 132 ms
81,200 KB
testcase_11 AC 205 ms
94,372 KB
testcase_12 AC 201 ms
85,720 KB
testcase_13 AC 104 ms
80,788 KB
testcase_14 AC 239 ms
92,516 KB
testcase_15 AC 348 ms
109,332 KB
testcase_16 AC 299 ms
98,424 KB
testcase_17 AC 346 ms
109,248 KB
testcase_18 AC 335 ms
109,036 KB
testcase_19 AC 380 ms
109,492 KB
testcase_20 AC 198 ms
113,228 KB
testcase_21 AC 193 ms
113,160 KB
testcase_22 AC 194 ms
113,624 KB
testcase_23 AC 203 ms
113,500 KB
testcase_24 AC 204 ms
113,320 KB
testcase_25 AC 217 ms
113,136 KB
testcase_26 AC 214 ms
113,412 KB
testcase_27 AC 225 ms
113,612 KB
testcase_28 AC 211 ms
113,548 KB
testcase_29 AC 214 ms
113,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)

d = [-1]*n
d[0] = 0
q = [0]
for v in q:
    for c in g[v]:
        if d[c] == -1:
            d[c] = d[v] + 1
            q.append(c)
print(d[-1])
0