結果

問題 No.1293 2種類の道路
ユーザー tktk_snsntktk_snsn
提出日時 2022-06-10 00:46:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 1,364 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 103,308 KB
最終ジャッジ日時 2024-09-21 05:40:08
合計ジャッジ時間 5,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,556 KB
testcase_01 AC 39 ms
54,264 KB
testcase_02 AC 39 ms
54,632 KB
testcase_03 AC 38 ms
54,732 KB
testcase_04 AC 43 ms
54,940 KB
testcase_05 AC 38 ms
54,332 KB
testcase_06 AC 38 ms
54,544 KB
testcase_07 AC 40 ms
54,760 KB
testcase_08 AC 42 ms
54,748 KB
testcase_09 AC 257 ms
84,072 KB
testcase_10 AC 260 ms
83,932 KB
testcase_11 AC 253 ms
83,996 KB
testcase_12 AC 241 ms
84,008 KB
testcase_13 AC 239 ms
84,432 KB
testcase_14 AC 179 ms
93,420 KB
testcase_15 AC 180 ms
93,668 KB
testcase_16 AC 188 ms
87,864 KB
testcase_17 AC 191 ms
88,852 KB
testcase_18 AC 164 ms
91,348 KB
testcase_19 AC 186 ms
103,308 KB
testcase_20 AC 180 ms
103,264 KB
testcase_21 AC 144 ms
76,304 KB
testcase_22 AC 153 ms
76,204 KB
testcase_23 AC 150 ms
75,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)


class UF_tree:
    def __init__(self, n):
        self.root = [-1] * (n + 1)

    def find(self, x):
        stack = []
        while self.root[x] >= 0:
            stack.append(x)
            x = self.root[x]
        for i in stack:
            self.root[i] = x
        return x

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if -self.root[x] > -self.root[y]:
            x, y = y, x
        self.root[y] += self.root[x]
        self.root[x] = y
        return True

    def size(self, x):
        return -self.root[self.find(x)]


N, D, W = map(int, input().split())
car = UF_tree(N)
walk = UF_tree(N)

for _ in range(D):
    a, b = map(int, input().split())
    car.unite(a-1, b-1)

for _ in range(W):
    a, b = map(int, input().split())
    walk.unite(a-1, b-1)

ans = 0
group = defaultdict(list)
for i in range(N):
    group[car.find(i)].append(i)

ans = 0
for k in group.keys():
    used = set()
    sz = 0
    for i in group[k]:
        x = walk.find(i)
        if x in used:
            continue
        sz += walk.size(x)
        used.add(x)
    ans += len(group[k]) * sz
print(ans - N)
0