結果

問題 No.2563 色ごとのグループ
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-18 04:29:32
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 5,459 ms
コンパイル使用メモリ 312,236 KB
実行使用メモリ 19,108 KB
最終ジャッジ日時 2024-09-18 04:29:44
合計ジャッジ時間 11,096 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 5 ms
6,940 KB
testcase_20 AC 14 ms
6,940 KB
testcase_21 AC 9 ms
6,940 KB
testcase_22 AC 9 ms
6,944 KB
testcase_23 AC 13 ms
6,944 KB
testcase_24 AC 115 ms
9,472 KB
testcase_25 AC 96 ms
10,240 KB
testcase_26 AC 136 ms
13,884 KB
testcase_27 AC 119 ms
17,996 KB
testcase_28 AC 154 ms
14,976 KB
testcase_29 AC 237 ms
19,024 KB
testcase_30 AC 205 ms
19,016 KB
testcase_31 AC 205 ms
18,960 KB
testcase_32 AC 206 ms
19,108 KB
testcase_33 AC 207 ms
14,360 KB
testcase_34 AC 202 ms
14,260 KB
testcase_35 AC 203 ms
14,440 KB
testcase_36 AC 207 ms
14,204 KB
testcase_37 AC 207 ms
14,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;

int main() {
    int n, m;
    cin >> n >> m;
    vector<int> c(n);
    for (int i = 0; i < n; i++) {
        cin >> c[i];
        c[i]--;
    }
    atcoder::dsu uf(n);
    for (int i = 0; i < m; i++) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        if (c[u] == c[v]) {
            uf.merge(u, v);
        }
    }
    vector<long long> cnt(n);
    auto g = uf.groups();
    for (auto v : g) {
        int x = v[0];
        cnt[c[x]]++;
    }
    long long ans = 0;
    for (int i = 0; i < n; i++) {
        ans += max(0LL, cnt[i] - 1);
    }
    cout << ans << endl;
}
0