結果

問題 No.2563 色ごとのグループ
ユーザー int_sanint_san
提出日時 2023-12-02 15:30:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 1,326 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 178,888 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-09-26 18:48:54
合計ジャッジ時間 6,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 17 ms
5,376 KB
testcase_21 AC 10 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 14 ms
5,376 KB
testcase_24 AC 128 ms
11,648 KB
testcase_25 AC 118 ms
13,056 KB
testcase_26 AC 170 ms
17,920 KB
testcase_27 AC 170 ms
23,936 KB
testcase_28 AC 193 ms
19,584 KB
testcase_29 AC 291 ms
25,088 KB
testcase_30 AC 278 ms
25,216 KB
testcase_31 AC 264 ms
25,088 KB
testcase_32 AC 265 ms
25,088 KB
testcase_33 AC 233 ms
18,688 KB
testcase_34 AC 229 ms
18,816 KB
testcase_35 AC 229 ms
18,816 KB
testcase_36 AC 232 ms
18,816 KB
testcase_37 AC 231 ms
18,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct UnionFind {
    vector<int> parent, rank, siz;
    UnionFind(int n) {
        parent.resize(n, -1);
        rank.resize(n, 1);
        siz.resize(n, 1);
    }
    int find(int x) {
        if (parent[x] == -1) {
            return x;
        } else {
            return parent[x] = find(parent[x]);
        }
    }
    void unite(int x, int y) {
        x = find(x);
        y = find(y);
        if (x == y) {
            return;
        }
        if (rank[x] < rank[y]) {
            swap(x, y);
        }
        parent[y] = x;
        if (rank[x] == rank[y]) {
            rank[x]++;
        }
        siz[x] += siz[y];
    }
    bool same(int x, int y) { return find(x) == find(y); }
    int size(int x) { return siz[find(x)]; }
};
int main() {
    int N, M;
    cin >> N >> M;
    vector<int> C(N);
    for (int i = 0; i < N; i++) {
        cin >> C[i];
        C[i]--;
    }
    UnionFind uf(N);
    for (int i = 0; i < M; i++) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        if (C[u] == C[v]) uf.unite(u, v);
    }
    int ans = 0;
    vector<set<int>> g(N);
    for (int i = 0; i < N; i++) {
        g[C[i]].insert(uf.find(i));
    }
    for (auto i : g) {
        if (i.size() > 0) ans += i.size() - 1;
    }
    cout << ans << endl;
}
0