結果

問題 No.1293 2種類の道路
ユーザー KudeKude
提出日時 2020-11-20 22:35:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 1,458 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 97,128 KB
最終ジャッジ日時 2024-07-23 13:26:45
合計ジャッジ時間 6,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,400 KB
testcase_01 AC 38 ms
53,908 KB
testcase_02 AC 37 ms
53,292 KB
testcase_03 AC 39 ms
53,452 KB
testcase_04 AC 38 ms
53,272 KB
testcase_05 AC 37 ms
53,464 KB
testcase_06 AC 38 ms
52,780 KB
testcase_07 AC 38 ms
52,332 KB
testcase_08 AC 40 ms
54,272 KB
testcase_09 AC 410 ms
87,388 KB
testcase_10 AC 402 ms
87,312 KB
testcase_11 AC 403 ms
87,952 KB
testcase_12 AC 407 ms
87,476 KB
testcase_13 AC 401 ms
87,536 KB
testcase_14 AC 264 ms
97,128 KB
testcase_15 AC 271 ms
96,788 KB
testcase_16 AC 343 ms
89,608 KB
testcase_17 AC 349 ms
92,188 KB
testcase_18 AC 314 ms
91,416 KB
testcase_19 AC 294 ms
95,928 KB
testcase_20 AC 304 ms
95,876 KB
testcase_21 AC 250 ms
77,076 KB
testcase_22 AC 257 ms
76,788 KB
testcase_23 AC 247 ms
76,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class dsu:
    def __init__(self, n=0):
        self._n = n
        self.parent_or_size = [-1] * n
    
    def merge(self, a: int, b: int) -> int:
        x = self.leader(a)
        y = self.leader(b)
        if x == y:
            return x
        if self.parent_or_size[x] > self.parent_or_size[y]:
            x, y = y, x
        self.parent_or_size[x] += self.parent_or_size[y]
        self.parent_or_size[y] = x
        return x
    
    def same(self, a: int, b: int) -> bool:
        return self.leader(a) == self.leader(b)
    
    def leader(self, a: int) -> int:
        x = a
        while self.parent_or_size[x] >= 0:
            x = self.parent_or_size[x]
        while a != x:
            self.parent_or_size[a], a = x, self.parent_or_size[a]
        return x
    
    def size(self, a: int) -> int:
        return -self.parent_or_size[self.leader(a)]
    
    def groups(self):
        g = [[] for _ in range(self._n)]
        for i in range(self._n):
            g[self.leader(i)].append(i)
        return list(c for c in g if c)

n, d, w = map(int, input().split())
ufd = dsu(n)
ufw = dsu(n)
for _ in range(d):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    ufd.merge(a, b)
for _ in range(w):
    c, d = map(int, input().split())
    c -= 1
    d -= 1
    ufw.merge(c, d)
ans = 0
for g in ufd.groups():
    frm = len(g)
    to = sum(ufw.size(v) for v in set(ufw.leader(u) for u in g))
    ans += frm * to
ans -= n
print(ans)
0