結果
問題 | No.2072 Anatomy |
ユーザー | taiga0629kyopro |
提出日時 | 2022-09-16 21:28:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,357 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 82,388 KB |
実行使用メモリ | 97,052 KB |
最終ジャッジ日時 | 2024-06-01 11:59:00 |
合計ジャッジ時間 | 10,341 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
53,552 KB |
testcase_01 | AC | 42 ms
53,604 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 217 ms
90,124 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 274 ms
93,352 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 236 ms
92,572 KB |
testcase_22 | WA | - |
testcase_23 | AC | 223 ms
92,044 KB |
testcase_24 | AC | 234 ms
92,564 KB |
testcase_25 | WA | - |
testcase_26 | AC | 40 ms
52,880 KB |
testcase_27 | AC | 227 ms
92,304 KB |
testcase_28 | WA | - |
ソースコード
class unionfind: def __init__(self,uni_num): self.uni_num=uni_num self.union_root = [-1 for i in range(self.uni_num + 1)] self.union_depth = [0] * (self.uni_num + 1) self.e_num=[0]*(self.uni_num+1) def find(self,x): # 親は誰? if self.union_root[x] < 0: return x else: self.union_root[x] = self.find(self.union_root[x]) return self.union_root[x] def unite(self,x, y): x = self.find(x) y = self.find(y) if x == y: self.e_num[x]+=1 return if self.union_depth[x] < self.union_depth[y]: x, y = y, x if self.union_depth[x] == self.union_depth[y]: self.union_depth[x] += 1 self.union_root[x] += self.union_root[y] self.union_root[y] = x self.e_num[x]+=self.e_num[y]+1 def size(self,x): return -self.union_root[self.find(x)] def same(self,x,y): return self.find(x)==self.find(y) def edge(self,x): return self.e_num[self.find(x)] n,m=map(int,input().split()) e=[] for i in range(m): u,v=map(int,input().split()) e.append((u,v)) e.append((0,0)) e.reverse() ans=1 uf=unionfind(n+3) for i in range(1,m+1): u,v=e[i] bu,bv=e[i-1] uf.unite(u,v) if uf.same(u,bu):ans+=1 print(ans)