結果
問題 | No.1565 Union |
ユーザー | O2MT |
提出日時 | 2021-07-26 16:49:16 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,666 bytes |
コンパイル時間 | 299 ms |
コンパイル使用メモリ | 82,200 KB |
実行使用メモリ | 110,892 KB |
最終ジャッジ日時 | 2024-07-22 07:50:57 |
合計ジャッジ時間 | 6,515 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
61,440 KB |
testcase_01 | AC | 40 ms
55,448 KB |
testcase_02 | AC | 40 ms
54,796 KB |
testcase_03 | AC | 38 ms
54,820 KB |
testcase_04 | AC | 39 ms
55,260 KB |
testcase_05 | AC | 40 ms
54,872 KB |
testcase_06 | AC | 40 ms
54,676 KB |
testcase_07 | AC | 41 ms
55,344 KB |
testcase_08 | AC | 38 ms
54,996 KB |
testcase_09 | AC | 39 ms
55,540 KB |
testcase_10 | AC | 190 ms
81,624 KB |
testcase_11 | AC | 373 ms
94,712 KB |
testcase_12 | AC | 303 ms
86,428 KB |
testcase_13 | AC | 213 ms
81,344 KB |
testcase_14 | AC | 398 ms
91,820 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
from collections import deque,defaultdict class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return len(self.roots()) def all_group_members(self): group_members = defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members N,M = map(int,input().split()) l = [[] for _ in range(N)] uf = UnionFind(N) for _ in range(M): a,b = map(int,input().split()) a -= 1 b -= 1 l[a].append(b) l[b].append(a) uf.union(a,b) if not uf.same(0,N-1): print(-1) exit() uf = False INF = 10**18 visited = [INF]*N que = deque([(0,0)]) while que: i,c = que.pop() for j in l[i]: if c+1 < visited[j]: que.append((j,c+1)) visited[j] = c+1 ans = visited[N-1] print(ans)