結果

問題 No.1293 2種類の道路
ユーザー hir355hir355
提出日時 2020-11-20 22:23:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 1,239 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 97,012 KB
最終ジャッジ日時 2024-07-23 13:18:41
合計ジャッジ時間 7,003 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 40 ms
52,736 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 44 ms
53,120 KB
testcase_09 AC 521 ms
86,804 KB
testcase_10 AC 523 ms
87,424 KB
testcase_11 AC 526 ms
87,424 KB
testcase_12 AC 524 ms
87,180 KB
testcase_13 AC 504 ms
87,220 KB
testcase_14 AC 308 ms
96,632 KB
testcase_15 AC 313 ms
97,012 KB
testcase_16 AC 282 ms
90,752 KB
testcase_17 AC 287 ms
93,440 KB
testcase_18 AC 233 ms
90,684 KB
testcase_19 AC 314 ms
96,972 KB
testcase_20 AC 320 ms
96,896 KB
testcase_21 AC 198 ms
77,056 KB
testcase_22 AC 212 ms
76,852 KB
testcase_23 AC 191 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n+1)]
        self.rank = [0] * (n + 1)
        self.size = [1] * (n + 1)

    # 検索
    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    # 併合
    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.rank[x] < self.rank[y]:
            self.par[x] = y
            self.size[y] += self.size[x]
        else:
            self.par[y] = x
            self.size[x] += self.size[y]
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1

    # 同じ集合に属するか判定
    def same_check(self, x, y):
        return self.find(x) == self.find(y)


n, d, w = map(int, input().split())
ufd = UnionFind(n)
ufw = UnionFind(n)
for i in range(d):
    a, b = map(int, input().split())
    ufd.unite(a - 1, b - 1)
for i in range(w):
    c, d = map(int, input().split())
    ufw.unite(c - 1, d - 1)
s = set()
for i in range(n):
    s.add((ufd.find(i), ufw.find(i)))
ans = 0
for p, q in s:
    ans += ufd.size[p] * ufw.size[q]
print(ans - n)
0