結果

問題 No.1390 Get together
ユーザー c-yanc-yan
提出日時 2021-03-30 07:48:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 914 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 63,084 KB
最終ジャッジ日時 2024-05-07 12:00:32
合計ジャッジ時間 19,079 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 42 ms
11,904 KB
testcase_04 AC 40 ms
11,520 KB
testcase_05 WA -
testcase_06 AC 40 ms
11,520 KB
testcase_07 AC 39 ms
11,648 KB
testcase_08 AC 39 ms
11,520 KB
testcase_09 AC 45 ms
12,032 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 WA -
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 WA -
testcase_17 AC 798 ms
60,888 KB
testcase_18 AC 800 ms
56,916 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1,008 ms
61,000 KB
testcase_26 WA -
testcase_27 AC 975 ms
60,740 KB
testcase_28 AC 996 ms
60,980 KB
testcase_29 AC 1,008 ms
60,780 KB
testcase_30 WA -
testcase_31 AC 1,002 ms
60,620 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(lambda x: int(x) - 1, 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 = find(parent, color[c][0])
    for j in color[c][1:]:
        if i == find(parent, j):
            continue
        result += 1
        unite(parent, i, j)
print(result)
0