結果

問題 No.1293 2種類の道路
ユーザー rlangevinrlangevin
提出日時 2024-02-02 12:04:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 1,510 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 106,624 KB
最終ジャッジ日時 2024-09-28 10:34:25
合計ジャッジ時間 6,618 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 40 ms
52,736 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 38 ms
52,272 KB
testcase_08 AC 40 ms
52,992 KB
testcase_09 AC 445 ms
93,884 KB
testcase_10 AC 447 ms
93,568 KB
testcase_11 AC 449 ms
94,012 KB
testcase_12 AC 441 ms
93,008 KB
testcase_13 AC 424 ms
93,312 KB
testcase_14 AC 291 ms
103,924 KB
testcase_15 AC 290 ms
103,384 KB
testcase_16 AC 217 ms
94,336 KB
testcase_17 AC 212 ms
97,408 KB
testcase_18 AC 196 ms
100,608 KB
testcase_19 AC 282 ms
105,980 KB
testcase_20 AC 284 ms
106,624 KB
testcase_21 AC 126 ms
76,100 KB
testcase_22 AC 129 ms
76,256 KB
testcase_23 AC 118 ms
76,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

    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 union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

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

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]
    
    
N, D, W = map(int, input().split())
Ux, Uy = UnionFind(N), UnionFind(N)
for i in range(D):
    a, b = map(int, input().split())
    a, b = a - 1, b - 1
    Ux.union(a, b)
for i in range(W):
    a, b = map(int, input().split())
    a, b = a - 1, b - 1
    Uy.union(a, b)
    
S = set()
mem = [[] for i in range(N)]
for i in range(N):
    mem[Ux.find(i)].append(i)
    
ans = 0
for i in range(N):
    uxi = Ux.find(i)
    if uxi in S:
        continue
    S.add(uxi)
    temp = set()
    for u in mem[uxi]:
        temp.add(Uy.find(u))
    cnt = -1
    for u in temp:
        cnt += Uy.get_size(u)
    ans += len(mem[uxi]) * cnt
    
print(ans)
0