結果
問題 | No.1390 Get together |
ユーザー | Lignan |
提出日時 | 2021-06-18 07:52:40 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,753 bytes |
コンパイル時間 | 628 ms |
コンパイル使用メモリ | 82,076 KB |
実行使用メモリ | 100,000 KB |
最終ジャッジ日時 | 2024-06-12 23:37:04 |
合計ジャッジ時間 | 5,908 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
59,904 KB |
testcase_01 | AC | 41 ms
54,400 KB |
testcase_02 | AC | 41 ms
53,888 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 41 ms
54,272 KB |
testcase_15 | AC | 42 ms
54,016 KB |
testcase_16 | TLE | - |
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 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
from collections import defaultdict n,m=map(int,input().split()) lst=[[] for i in range(n)] for i in range(n): b,c=map(int,input().split()) b-=1 c-=1 lst[c].append(b) 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): rood=self.find(x) return [i for i in range(self.n) if self.find(i)==root] def roots(self,x): 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): groum_members=defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members def __str__(self): return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items()) slime=UnionFind(n) ans=0 for i in range(n): if len(lst[i])<2: continue for j in range(len(lst[i])): for k in range(j+1,len(lst[i])): if slime.same(lst[i][j],lst[i][k]): continue slime.union(lst[i][j],lst[i][k]) ans+=1 print(ans)