結果

問題 No.1293 2種類の道路
ユーザー trineutrontrineutron
提出日時 2020-11-21 03:55:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 555 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 615 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 95,548 KB
最終ジャッジ日時 2024-07-23 14:23:18
合計ジャッジ時間 6,886 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,108 KB
testcase_01 AC 39 ms
52,904 KB
testcase_02 AC 38 ms
53,684 KB
testcase_03 AC 38 ms
52,412 KB
testcase_04 AC 38 ms
53,956 KB
testcase_05 AC 38 ms
52,752 KB
testcase_06 AC 38 ms
52,200 KB
testcase_07 AC 38 ms
53,220 KB
testcase_08 AC 40 ms
54,516 KB
testcase_09 AC 523 ms
86,308 KB
testcase_10 AC 533 ms
86,272 KB
testcase_11 AC 534 ms
86,044 KB
testcase_12 AC 532 ms
86,452 KB
testcase_13 AC 555 ms
86,424 KB
testcase_14 AC 309 ms
95,548 KB
testcase_15 AC 301 ms
95,144 KB
testcase_16 AC 284 ms
88,764 KB
testcase_17 AC 293 ms
88,620 KB
testcase_18 AC 217 ms
89,372 KB
testcase_19 AC 319 ms
95,404 KB
testcase_20 AC 296 ms
95,444 KB
testcase_21 AC 193 ms
77,040 KB
testcase_22 AC 197 ms
76,924 KB
testcase_23 AC 198 ms
76,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.parent = list(range(n))
        self.size = [1] * n

    def find(self, n):
        if self.parent[n] == n:
            return n
        self.parent[n] = self.find(self.parent[n])
        return self.parent[n]

    def merge(self, m, n):
        m = self.find(m)
        n = self.find(n)
        if m == n:
            return
        if m > n:
            m, n = n, m
        self.parent[m] = n
        self.size[n] += self.size[m]


n, d, w = map(int, input().split())
x = UnionFind(n)
y = UnionFind(n)
for i in range(d):
    a, b = map(int, input().split())
    x.merge(a - 1, b - 1)
for i in range(w):
    a, b = map(int, input().split())
    y.merge(a - 1, b - 1)

s = set()
for i in range(n):
    s.add((x.find(i), y.find(i)))
ans = -n
for a, b in s:
    ans += x.size[a] * y.size[b]
print(ans)
0