結果

問題 No.1390 Get together
ユーザー flippergoflippergo
提出日時 2024-10-23 08:00:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 154,124 KB
最終ジャッジ日時 2024-10-23 08:00:36
合計ジャッジ時間 14,428 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,276 KB
testcase_01 AC 40 ms
54,312 KB
testcase_02 AC 39 ms
55,172 KB
testcase_03 AC 100 ms
77,972 KB
testcase_04 AC 93 ms
77,920 KB
testcase_05 AC 93 ms
78,068 KB
testcase_06 AC 100 ms
77,792 KB
testcase_07 AC 99 ms
77,964 KB
testcase_08 AC 97 ms
78,152 KB
testcase_09 AC 102 ms
78,032 KB
testcase_10 AC 39 ms
54,228 KB
testcase_11 AC 39 ms
55,372 KB
testcase_12 AC 38 ms
54,988 KB
testcase_13 AC 39 ms
54,368 KB
testcase_14 AC 40 ms
55,120 KB
testcase_15 AC 40 ms
54,916 KB
testcase_16 AC 505 ms
153,572 KB
testcase_17 AC 494 ms
153,916 KB
testcase_18 AC 449 ms
153,608 KB
testcase_19 AC 697 ms
153,700 KB
testcase_20 AC 643 ms
153,752 KB
testcase_21 AC 665 ms
153,752 KB
testcase_22 AC 611 ms
153,828 KB
testcase_23 AC 641 ms
153,816 KB
testcase_24 AC 625 ms
153,884 KB
testcase_25 AC 673 ms
153,892 KB
testcase_26 AC 717 ms
153,884 KB
testcase_27 AC 680 ms
153,956 KB
testcase_28 AC 702 ms
154,124 KB
testcase_29 AC 674 ms
153,924 KB
testcase_30 AC 710 ms
153,620 KB
testcase_31 AC 675 ms
153,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
G = {i:[] for i in range(1,N+M+1)}
for _ in range(N):
    b,c = map(int,input().split())
    G[b].append(M+c)
    G[M+c].append(b)
col = [-1]*(N+M+1)
cur = 0
for i in range(1,N+M+1):
    if col[i]<0:
        col[i] = cur
        que = deque([i])
        while que:
            j = que.popleft()
            for k in G[j]:
                if col[k]<0:
                    col[k] = cur
                    que.append(k)
        cur += 1
cnt = set()
for i in range(1,M+1):
    cnt.add(col[i])
print(M-len(cnt))
0