結果
問題 | No.1293 2種類の道路 |
ユーザー | 👑 Kazun |
提出日時 | 2020-11-21 01:42:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 302 ms / 2,000 ms |
コード長 | 2,503 bytes |
コンパイル時間 | 216 ms |
コンパイル使用メモリ | 82,236 KB |
実行使用メモリ | 110,996 KB |
最終ジャッジ日時 | 2024-07-23 14:16:56 |
合計ジャッジ時間 | 5,056 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
53,628 KB |
testcase_01 | AC | 38 ms
53,620 KB |
testcase_02 | AC | 38 ms
52,896 KB |
testcase_03 | AC | 38 ms
53,660 KB |
testcase_04 | AC | 39 ms
52,820 KB |
testcase_05 | AC | 39 ms
52,688 KB |
testcase_06 | AC | 38 ms
54,376 KB |
testcase_07 | AC | 36 ms
53,424 KB |
testcase_08 | AC | 38 ms
53,656 KB |
testcase_09 | AC | 302 ms
86,416 KB |
testcase_10 | AC | 289 ms
85,188 KB |
testcase_11 | AC | 297 ms
86,088 KB |
testcase_12 | AC | 293 ms
85,700 KB |
testcase_13 | AC | 294 ms
85,184 KB |
testcase_14 | AC | 189 ms
94,840 KB |
testcase_15 | AC | 200 ms
95,092 KB |
testcase_16 | AC | 238 ms
89,168 KB |
testcase_17 | AC | 230 ms
89,952 KB |
testcase_18 | AC | 196 ms
94,196 KB |
testcase_19 | AC | 210 ms
110,996 KB |
testcase_20 | AC | 223 ms
110,816 KB |
testcase_21 | AC | 166 ms
76,556 KB |
testcase_22 | AC | 155 ms
76,264 KB |
testcase_23 | AC | 150 ms
76,156 KB |
ソースコード
class Union_Find(): def __init__(self,N): """0,1,...,n-1を要素として初期化する. N:要素数 """ self.n=N self.parents=[-1]*N self.rank=[0]*N def find(self, x): """要素xの属している族を調べる. x:要素 """ V=[] while self.parents[x]>=0: V.append(x) x=self.parents[x] for v in V: self.parents[v]=x return x def union(self, x, y): """要素x,yを同一視する. x,y:要素 """ x=self.find(x) y=self.find(y) if x==y: return if self.rank[x]<self.rank[y]: x,y=y,x self.parents[x]+=self.parents[y] self.parents[y]=x if self.rank[x]==self.rank[y]: self.rank[x]+=1 def size(self, x): """要素xの属している要素の数. x:要素 """ return -self.parents[self.find(x)] def same(self, x, y): """要素x,yは同一視されているか? x,y:要素 """ return self.find(x) == self.find(y) def members(self, x): """要素xが属している族の要素. ※族の要素の個数が欲しいときはsizeを使うこと!! 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): """全ての族の出力 """ X={r:[] for r in self.roots()} for k in range(self.n): X[self.find(k)].append(k) return X def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) #================================================ import sys input=sys.stdin.readline N,D,W=map(int,input().split()) U=Union_Find(N+1) for _ in range(D): a,b=map(int,input().split()) U.union(a,b) V=Union_Find(N+1) for j in range(W): c,d=map(int,input().split()) V.union(c,d) G=U.all_group_members() K=0 for t in G: if t==0:continue M=set() X=0 for a in G[t]: f=V.find(a) if f in M: continue M.add(f) X+=V.size(a) K+=X*len(G[t]) print(K-N)