結果

問題 No.1293 2種類の道路
ユーザー paruf4paruf4
提出日時 2020-11-21 00:50:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 974 ms / 2,000 ms
コード長 1,727 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 38,788 KB
最終ジャッジ日時 2024-07-23 14:12:21
合計ジャッジ時間 13,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,136 KB
testcase_01 AC 33 ms
11,008 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
11,008 KB
testcase_05 AC 30 ms
11,008 KB
testcase_06 AC 30 ms
11,008 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 32 ms
11,008 KB
testcase_09 AC 974 ms
21,148 KB
testcase_10 AC 969 ms
20,900 KB
testcase_11 AC 960 ms
21,028 KB
testcase_12 AC 972 ms
21,012 KB
testcase_13 AC 967 ms
20,892 KB
testcase_14 AC 674 ms
38,788 KB
testcase_15 AC 666 ms
38,656 KB
testcase_16 AC 910 ms
23,728 KB
testcase_17 AC 929 ms
28,280 KB
testcase_18 AC 568 ms
29,672 KB
testcase_19 AC 561 ms
23,920 KB
testcase_20 AC 565 ms
23,936 KB
testcase_21 AC 751 ms
11,136 KB
testcase_22 AC 754 ms
11,008 KB
testcase_23 AC 746 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
        return self.parents[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

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

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def size(self, x):
        return abs(self.parents[self.find(x)])

    def groups(self):
        roots = self.roots()
        r_to_g = {}
        for i, r in enumerate(roots):
            r_to_g[r] = i
        groups = [[] for _ in roots]
        for i in range(self.n):
            groups[r_to_g[self.find(i)]].append(i)
        return groups


n, d, w = map(int, input().split())
uf1 = UnionFind(n)
uf2 = UnionFind(n)
for _ in range(d):
    p, q = map(int, input().split())
    p -= 1
    q -= 1
    uf1.union(p, q)

for _ in range(w):
    p, q = map(int, input().split())
    p -= 1
    q -= 1
    uf2.union(p, q)

res = 0

# print(uf1.groups())
# print(uf2.groups())
for g in uf2.groups():
    goal = uf2.size(g[0])
    start = 0
    used = {}
    for v in g:
        r = uf1.find(v)
        if r not in used:
            start += uf1.size(r)
            used[r] = 1
    res += (start-1)*goal

print(res)
0