結果

問題 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  
実行時間 981 ms / 2,000 ms
コード長 897 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 64,220 KB
最終ジャッジ日時 2024-05-07 12:23:31
合計ジャッジ時間 17,025 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
10,368 KB
testcase_03 AC 40 ms
11,520 KB
testcase_04 AC 38 ms
11,264 KB
testcase_05 AC 40 ms
11,648 KB
testcase_06 AC 36 ms
11,520 KB
testcase_07 AC 38 ms
11,520 KB
testcase_08 AC 38 ms
11,520 KB
testcase_09 AC 42 ms
11,904 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 27 ms
10,496 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 27 ms
10,496 KB
testcase_15 AC 27 ms
10,496 KB
testcase_16 AC 797 ms
42,580 KB
testcase_17 AC 745 ms
60,892 KB
testcase_18 AC 744 ms
56,660 KB
testcase_19 AC 928 ms
60,068 KB
testcase_20 AC 921 ms
46,308 KB
testcase_21 AC 922 ms
46,656 KB
testcase_22 AC 898 ms
64,220 KB
testcase_23 AC 870 ms
62,020 KB
testcase_24 AC 876 ms
63,084 KB
testcase_25 AC 938 ms
60,872 KB
testcase_26 AC 924 ms
60,732 KB
testcase_27 AC 948 ms
60,748 KB
testcase_28 AC 936 ms
60,720 KB
testcase_29 AC 943 ms
60,720 KB
testcase_30 AC 946 ms
61,048 KB
testcase_31 AC 981 ms
60,628 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