結果

問題 No.1293 2種類の道路
ユーザー Kiri8128Kiri8128
提出日時 2020-11-20 22:26:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 1,470 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 96,172 KB
最終ジャッジ日時 2024-07-23 13:20:25
合計ジャッジ時間 5,367 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,928 KB
testcase_01 AC 38 ms
53,792 KB
testcase_02 AC 38 ms
53,260 KB
testcase_03 AC 37 ms
53,004 KB
testcase_04 AC 37 ms
53,484 KB
testcase_05 AC 38 ms
53,388 KB
testcase_06 AC 38 ms
52,744 KB
testcase_07 AC 38 ms
53,112 KB
testcase_08 AC 40 ms
54,516 KB
testcase_09 AC 301 ms
86,488 KB
testcase_10 AC 294 ms
86,312 KB
testcase_11 AC 298 ms
86,700 KB
testcase_12 AC 309 ms
86,580 KB
testcase_13 AC 298 ms
86,008 KB
testcase_14 AC 205 ms
95,984 KB
testcase_15 AC 195 ms
96,172 KB
testcase_16 AC 241 ms
89,024 KB
testcase_17 AC 241 ms
92,016 KB
testcase_18 AC 206 ms
91,148 KB
testcase_19 AC 197 ms
95,304 KB
testcase_20 AC 200 ms
95,444 KB
testcase_21 AC 187 ms
76,940 KB
testcase_22 AC 179 ms
76,416 KB
testcase_23 AC 174 ms
76,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
class UnionFind():
    def __init__(self, n):
        self.n = n
        self.PA = [-1] * n
    def root(self, a):
        L = []
        while self.PA[a] >= 0:
            L.append(a)
            a = self.PA[a]
        for l in L:
            self.PA[l] = a
        return a
    def unite(self, a, b):
        ra, rb = self.root(a), self.root(b)
        if ra != rb:
            if self.PA[rb] >= self.PA[ra]:
                self.PA[ra] += self.PA[rb]
                self.PA[rb] = ra
            else:
                self.PA[rb] += self.PA[ra]
                self.PA[ra] = rb
    def size(self, a):
        return -self.PA[self.root(a)]
    def groups(self):
        G = [[] for _ in range(self.n)]
        for i in range(self.n):
            G[self.root(i)].append(i)
        return [g for g in G if g]
    def group_size(self):
        G = [[] for _ in range(self.n)]
        for i in range(self.n):
            G[self.root(i)].append(i)
        return [len(g) for g in G if g]

N, D, W = map(int, input().split())
uf1 = UnionFind(N)
uf2 = UnionFind(N)
for _ in range(D):
    a, b = map(int, input().split())
    uf1.unite(a-1, b-1)

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

ans = -N
for g in uf1.groups():
    s = len(g)
    S = set()
    for a in g:
        r = uf2.root(a)
        if r not in S:
            S.add(r)
            ans += uf2.size(r) * s

print(ans)
0