結果

問題 No.1390 Get together
ユーザー NoaSaberNoaSaber
提出日時 2021-03-09 10:14:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 102,556 KB
最終ジャッジ日時 2024-10-11 01:02:14
合計ジャッジ時間 8,205 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,464 KB
testcase_01 AC 41 ms
52,688 KB
testcase_02 AC 39 ms
52,804 KB
testcase_03 AC 89 ms
77,056 KB
testcase_04 AC 85 ms
76,652 KB
testcase_05 AC 86 ms
76,844 KB
testcase_06 AC 87 ms
76,780 KB
testcase_07 AC 80 ms
74,796 KB
testcase_08 AC 81 ms
75,128 KB
testcase_09 AC 90 ms
76,924 KB
testcase_10 AC 40 ms
52,000 KB
testcase_11 AC 39 ms
52,192 KB
testcase_12 AC 41 ms
53,268 KB
testcase_13 AC 41 ms
52,584 KB
testcase_14 AC 41 ms
52,396 KB
testcase_15 AC 41 ms
52,192 KB
testcase_16 AC 211 ms
95,268 KB
testcase_17 AC 327 ms
102,556 KB
testcase_18 AC 196 ms
95,280 KB
testcase_19 AC 391 ms
97,720 KB
testcase_20 AC 393 ms
97,204 KB
testcase_21 AC 397 ms
97,288 KB
testcase_22 AC 307 ms
96,936 KB
testcase_23 AC 320 ms
96,440 KB
testcase_24 AC 304 ms
97,076 KB
testcase_25 AC 390 ms
97,232 KB
testcase_26 AC 386 ms
97,524 KB
testcase_27 AC 386 ms
97,272 KB
testcase_28 AC 382 ms
97,412 KB
testcase_29 AC 386 ms
97,484 KB
testcase_30 AC 380 ms
97,564 KB
testcase_31 AC 389 ms
97,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
l=[[] for i in range(N)]
for i in range(N):
    b,c=map(int,input().split())
    b-=1
    c-=1
    l[c].append(b)
root=[i for i in range(M)]
height=[0]*M
def find(a):
    f=a
    if a==root[a]:
        return a
    while a!=root[a]:
        a=root[a]
    root[f]=a
    return a
def union(a,b):
    A=find(a)
    B=find(b)
    if A==B:
        return 0
    if height[A]>height[B]:
        root[B]=root[A]
        return 1
    else:
        root[A]=root[B]
        if height[A]==height[B]:
            height[B]+=1
        return 1
ans=0
for i in l:
    if len(i)<2:
        continue
    S=i[0]
    for j in range(1,len(i)):
        ans+=union(i[j],S)
print(ans)
0