結果

問題 No.1390 Get together
ユーザー c-yanc-yan
提出日時 2021-03-30 08:18:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,118 ms / 2,000 ms
コード長 897 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 64,452 KB
最終ジャッジ日時 2024-11-30 05:09:27
合計ジャッジ時間 19,241 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 46 ms
11,776 KB
testcase_04 AC 44 ms
11,520 KB
testcase_05 AC 46 ms
11,648 KB
testcase_06 AC 43 ms
11,520 KB
testcase_07 AC 43 ms
11,520 KB
testcase_08 AC 45 ms
11,520 KB
testcase_09 AC 49 ms
11,904 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 959 ms
42,704 KB
testcase_17 AC 826 ms
60,764 KB
testcase_18 AC 846 ms
56,916 KB
testcase_19 AC 1,087 ms
60,068 KB
testcase_20 AC 1,115 ms
46,300 KB
testcase_21 AC 1,118 ms
46,520 KB
testcase_22 AC 1,057 ms
64,452 KB
testcase_23 AC 1,049 ms
62,016 KB
testcase_24 AC 1,043 ms
63,088 KB
testcase_25 AC 1,091 ms
60,740 KB
testcase_26 AC 1,103 ms
60,916 KB
testcase_27 AC 1,091 ms
60,748 KB
testcase_28 AC 1,106 ms
60,848 KB
testcase_29 AC 1,090 ms
60,852 KB
testcase_30 AC 1,095 ms
60,952 KB
testcase_31 AC 1,098 ms
60,632 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, M = map(int, readline().split())

box = {}
color = {}
parent = [-1] * N
for i in range(N):
    b, c = map(int, readline().split())
    box.setdefault(b, [])
    box[b].append(i)
    color.setdefault(c, [])
    color[c].append(i)

for b in box:
    i = box[b][0]
    for j in box[b][1:]:
        unite(parent, i, j)

result = 0
for c in color:
    i = color[c][0]
    for j in color[c][1:]:
        if find(parent, i) == find(parent, j):
            continue
        result += 1
        unite(parent, i, j)
print(result)
0