結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 30 ms
11,008 KB
testcase_05 AC 31 ms
11,008 KB
testcase_06 AC 30 ms
11,008 KB
testcase_07 AC 31 ms
11,008 KB
testcase_08 AC 31 ms
11,008 KB
testcase_09 AC 874 ms
44,800 KB
testcase_10 AC 896 ms
44,800 KB
testcase_11 AC 867 ms
44,672 KB
testcase_12 AC 851 ms
44,796 KB
testcase_13 AC 844 ms
44,800 KB
testcase_14 AC 584 ms
44,160 KB
testcase_15 AC 560 ms
44,160 KB
testcase_16 AC 709 ms
46,312 KB
testcase_17 AC 678 ms
44,796 KB
testcase_18 AC 518 ms
46,588 KB
testcase_19 AC 619 ms
52,404 KB
testcase_20 AC 613 ms
52,364 KB
testcase_21 AC 339 ms
11,264 KB
testcase_22 AC 341 ms
11,264 KB
testcase_23 AC 319 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,D,W=map(int,input().split())

# UnionFind

Group0 = [i for i in range(N+1)] # グループ分け
Nodes0 = [1]*(N+1) # 各グループのノードの数

def find(x):
    while Group0[x] != x:
        x=Group0[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes0[find(x)] < Nodes0[find(y)]:
            
            Nodes0[find(y)] += Nodes0[find(x)]
            Nodes0[find(x)] = 0
            Group0[find(x)] = find(y)
            
        else:
            Nodes0[find(x)] += Nodes0[find(y)]
            Nodes0[find(y)] = 0
            Group0[find(y)] = find(x)

# UnionFind

Group1 = [i for i in range(N+1)] # グループ分け
Nodes1 = [1]*(N+1) # 各グループのノードの数

def find1(x):
    while Group1[x] != x:
        x=Group1[x]
    return x

def Union1(x,y):
    if find1(x) != find1(y):
        if Nodes1[find1(x)] < Nodes1[find1(y)]:
            
            Nodes1[find1(y)] += Nodes1[find1(x)]
            Nodes1[find1(x)] = 0
            Group1[find1(x)] = find1(y)
            
        else:
            Nodes1[find1(x)] += Nodes1[find1(y)]
            Nodes1[find1(y)] = 0
            Group1[find1(y)] = find1(x)

for i in range (D):
    x,y=map(int,input().split())
    Union(x,y)

for i in range(W):
    x,y=map(int,input().split())
    Union1(x,y)

G1_to_G0=[set() for i in range(N+1)]

for i in range(N+1):
    G1_to_G0[find1(i)].add(find(i))

NGroup=[0]*(N+1)

for i in range(N+1):
    if find1(i)==i:
        for g0 in G1_to_G0[i]:
            NGroup[g0]+=Nodes1[i]
            


ANS=0
for i in range(1,N+1):
    if Nodes0[i]==0:
        continue

    ANS+=Nodes0[i]*(NGroup[i]-1)

print(ANS)
0