結果

問題 No.1390 Get together
ユーザー ああいいああいい
提出日時 2022-01-08 20:51:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 96,236 KB
最終ジャッジ日時 2024-11-14 09:47:08
合計ジャッジ時間 9,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,620 KB
testcase_01 AC 38 ms
53,512 KB
testcase_02 AC 38 ms
52,832 KB
testcase_03 AC 93 ms
76,560 KB
testcase_04 AC 87 ms
76,740 KB
testcase_05 AC 97 ms
77,040 KB
testcase_06 AC 90 ms
76,260 KB
testcase_07 AC 85 ms
77,068 KB
testcase_08 AC 84 ms
77,028 KB
testcase_09 AC 95 ms
76,896 KB
testcase_10 AC 39 ms
52,692 KB
testcase_11 AC 39 ms
54,568 KB
testcase_12 AC 39 ms
53,372 KB
testcase_13 AC 39 ms
53,092 KB
testcase_14 AC 38 ms
53,552 KB
testcase_15 AC 39 ms
52,936 KB
testcase_16 AC 200 ms
93,212 KB
testcase_17 AC 311 ms
95,880 KB
testcase_18 AC 191 ms
93,320 KB
testcase_19 AC 384 ms
96,236 KB
testcase_20 AC 376 ms
95,488 KB
testcase_21 AC 375 ms
95,936 KB
testcase_22 AC 292 ms
94,544 KB
testcase_23 AC 301 ms
95,828 KB
testcase_24 AC 300 ms
95,136 KB
testcase_25 AC 368 ms
95,904 KB
testcase_26 AC 363 ms
96,024 KB
testcase_27 AC 376 ms
96,080 KB
testcase_28 AC 371 ms
95,836 KB
testcase_29 AC 367 ms
95,652 KB
testcase_30 AC 365 ms
95,892 KB
testcase_31 AC 371 ms
95,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
import sys
sys.setrecursionlimit(10 ** 6)

parent = [-1] * (M + 1)
def find(i):
    if parent[i] < 0:
        return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False
    if -parent[I] > -parent[J]:
        I,J = J,I
    parent[J] += parent[I]
    parent[I] = J
    return True

col = [[] for _ in range(N+1)]
for _ in range(N):
    b,c = map(int,input().split())
    col[c].append(b)
for i in range(1,N+1):
    if len(col[i]) >= 2:
        for b in col[i]:
            unite(b,col[i][0])
ans = 0
for i in range(1,M+1):
    if parent[i] < 0:
        ans += -parent[i] - 1
print(ans)
0