結果

問題 No.1293 2種類の道路
ユーザー trineutrontrineutron
提出日時 2020-11-21 03:55:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 993 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 31,456 KB
最終ジャッジ日時 2024-07-23 14:23:09
合計ジャッジ時間 14,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 966 ms
24,180 KB
testcase_10 AC 979 ms
24,308 KB
testcase_11 AC 967 ms
24,184 KB
testcase_12 AC 977 ms
24,180 KB
testcase_13 AC 993 ms
24,180 KB
testcase_14 AC 655 ms
31,268 KB
testcase_15 AC 651 ms
31,316 KB
testcase_16 AC 915 ms
25,976 KB
testcase_17 AC 910 ms
26,740 KB
testcase_18 AC 560 ms
31,456 KB
testcase_19 AC 614 ms
31,412 KB
testcase_20 AC 618 ms
31,328 KB
testcase_21 AC 715 ms
11,008 KB
testcase_22 AC 727 ms
10,880 KB
testcase_23 AC 714 ms
10,880 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