結果

問題 No.1390 Get together
ユーザー tamatotamato
提出日時 2021-02-12 21:45:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 557 ms / 2,000 ms
コード長 1,207 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 150,760 KB
最終ジャッジ日時 2024-07-19 20:54:43
合計ジャッジ時間 10,645 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,632 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 37 ms
54,528 KB
testcase_03 AC 110 ms
78,636 KB
testcase_04 AC 83 ms
78,208 KB
testcase_05 AC 87 ms
78,484 KB
testcase_06 AC 83 ms
78,408 KB
testcase_07 AC 80 ms
77,952 KB
testcase_08 AC 82 ms
78,144 KB
testcase_09 AC 89 ms
79,072 KB
testcase_10 AC 39 ms
54,232 KB
testcase_11 AC 40 ms
53,888 KB
testcase_12 AC 39 ms
54,016 KB
testcase_13 AC 40 ms
54,272 KB
testcase_14 AC 38 ms
54,016 KB
testcase_15 AC 39 ms
53,888 KB
testcase_16 AC 303 ms
128,000 KB
testcase_17 AC 287 ms
147,748 KB
testcase_18 AC 340 ms
145,536 KB
testcase_19 AC 521 ms
150,144 KB
testcase_20 AC 460 ms
139,988 KB
testcase_21 AC 442 ms
139,520 KB
testcase_22 AC 446 ms
147,200 KB
testcase_23 AC 557 ms
146,292 KB
testcase_24 AC 552 ms
147,192 KB
testcase_25 AC 541 ms
150,400 KB
testcase_26 AC 529 ms
150,400 KB
testcase_27 AC 541 ms
150,760 KB
testcase_28 AC 493 ms
150,440 KB
testcase_29 AC 506 ms
150,272 KB
testcase_30 AC 512 ms
150,400 KB
testcase_31 AC 507 ms
150,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import deque
    input = sys.stdin.readline

    N, M = map(int, input().split())
    seen = [0] * (N+1)
    ans = 0
    box = [set() for _ in range(M+1)]
    for _ in range(N):
        b, c = map(int, input().split())
        box[b].add(c)

    adj = [set() for _ in range(N+1)]
    for b in range(1, M+1):
        C = list(box[b])
        if len(C) > 1:
            c0 = C[0]
            for c in C[1:]:
                adj[c0].add(c)
                adj[c].add(c0)

    root = [-1] * (N+1)
    for v0 in range(1, N+1):
        if seen[v0]:
            continue
        root[v0] = v0
        que = deque()
        que.append(v0)
        seen[1] = 1
        while que:
            v = que.popleft()
            for u in adj[v]:
                if seen[u] == 0:
                    seen[u] = 1
                    que.append(u)
                    root[u] = v0

    cnt = [0] * (N+1)
    for i in range(1, M+1):
        if box[i]:
            b = min(list(box[i]))
            cnt[root[b]] += 1
    for i in range(1, N+1):
        if cnt[i]:
            ans += cnt[i] - 1
    print(ans)


if __name__ == '__main__':
    main()
0