結果

問題 No.1293 2種類の道路
ユーザー c-yanc-yan
提出日時 2020-11-21 00:52:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 794 ms / 2,000 ms
コード長 951 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 45,640 KB
最終ジャッジ日時 2024-07-23 14:12:33
合計ジャッジ時間 11,908 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 781 ms
39,040 KB
testcase_10 AC 772 ms
39,040 KB
testcase_11 AC 782 ms
39,040 KB
testcase_12 AC 778 ms
39,040 KB
testcase_13 AC 792 ms
39,040 KB
testcase_14 AC 529 ms
45,568 KB
testcase_15 AC 548 ms
45,640 KB
testcase_16 AC 794 ms
40,832 KB
testcase_17 AC 780 ms
40,768 KB
testcase_18 AC 532 ms
41,344 KB
testcase_19 AC 545 ms
39,296 KB
testcase_20 AC 539 ms
39,296 KB
testcase_21 AC 426 ms
11,008 KB
testcase_22 AC 423 ms
11,136 KB
testcase_23 AC 420 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit, stdin


def find(parent, i):
    t = parent[i]
    if t < 0:
        return i
    t = find(parent, t)
    parent[i] = t
    return t


def unite(parent, i, j):
    i = find(parent, i)
    j = find(parent, j)
    if i == j:
        return
    parent[j] += parent[i]
    parent[i] = j


readline = stdin.readline
setrecursionlimit(10 ** 6)

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

car = [-1] * N
for _ in range(D):
    a, b = map(lambda x: int(x) - 1, readline().split())
    unite(car, a, b)

walking = [-1] * N
for _ in range(W):
    c, d = map(lambda x: int(x) - 1, readline().split())
    unite(walking, c, d)

cs = [0] * N
ss = [set() for _ in range(N)]
for i in range(N):
    a = find(car, i)
    b = find(walking, i)
    if b in ss[a]:
        continue
    ss[a].add(b)
    cs[a] -= walking[b]

result = 0
for i in range(N):
    if car[i] >= 0:
        continue
    result -= (cs[i] - 1) * car[i]
print(result)
0