結果

問題 No.1293 2種類の道路
ユーザー ygd.ygd.
提出日時 2020-11-21 23:14:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 532 ms / 2,000 ms
コード長 1,498 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 97,164 KB
最終ジャッジ日時 2024-07-23 16:06:54
合計ジャッジ時間 6,933 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,624 KB
testcase_01 AC 38 ms
52,804 KB
testcase_02 AC 38 ms
52,680 KB
testcase_03 AC 39 ms
53,884 KB
testcase_04 AC 39 ms
53,620 KB
testcase_05 AC 39 ms
53,004 KB
testcase_06 AC 37 ms
53,024 KB
testcase_07 AC 38 ms
52,872 KB
testcase_08 AC 41 ms
53,720 KB
testcase_09 AC 532 ms
87,336 KB
testcase_10 AC 530 ms
88,080 KB
testcase_11 AC 525 ms
87,140 KB
testcase_12 AC 515 ms
87,104 KB
testcase_13 AC 526 ms
87,156 KB
testcase_14 AC 309 ms
96,700 KB
testcase_15 AC 317 ms
97,164 KB
testcase_16 AC 288 ms
90,936 KB
testcase_17 AC 283 ms
93,392 KB
testcase_18 AC 230 ms
91,948 KB
testcase_19 AC 310 ms
96,808 KB
testcase_20 AC 309 ms
96,756 KB
testcase_21 AC 196 ms
77,032 KB
testcase_22 AC 202 ms
76,984 KB
testcase_23 AC 188 ms
76,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]
    def find(self, x):
        """
        x が属するグループを探索して親を出す。
        """
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]
    def union(self, x, y):
        """
        x と y のグループを結合
        """
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]
    def is_same(self, x, y):
        """
        x と y が同じグループか否か
        """
        return self.find(x) == self.find(y)
    def get_size(self, x):
        """
        x が属するグループの要素数
        """
        x = self.find(x)
        return self.size[x]
N,D,W = map(int,input().split())
V = UnionFind(N)
F = UnionFind(N) 
for i in range(D):
  a,b = map(int,input().split())
  a-=1;b-=1
  V.union(a,b)
for i in range(W):
  a,b = map(int,input().split())
  a-=1;b-=1
  F.union(a,b)
ans = 0
S = set([])
for i in range(N):
  temp = (V.find(i),F.find(i))
  S.add(temp)
for x,y in S:
  temp = V.get_size(x)*F.get_size(y)
  ans += temp
print(ans-N)
0