結果

問題 No.2563 色ごとのグループ
ユーザー manabeaimanabeai
提出日時 2023-12-02 16:27:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 1,120 bytes
コンパイル時間 2,040 ms
コンパイル使用メモリ 208,240 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-09-26 20:19:57
合計ジャッジ時間 6,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 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 3 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 7 ms
5,376 KB
testcase_20 AC 14 ms
5,376 KB
testcase_21 AC 9 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 14 ms
5,376 KB
testcase_24 AC 132 ms
10,880 KB
testcase_25 AC 106 ms
10,240 KB
testcase_26 AC 151 ms
13,184 KB
testcase_27 AC 117 ms
13,440 KB
testcase_28 AC 176 ms
14,464 KB
testcase_29 AC 241 ms
18,048 KB
testcase_30 AC 236 ms
18,048 KB
testcase_31 AC 241 ms
18,048 KB
testcase_32 AC 243 ms
18,048 KB
testcase_33 AC 255 ms
22,272 KB
testcase_34 AC 258 ms
22,272 KB
testcase_35 AC 251 ms
22,272 KB
testcase_36 AC 251 ms
22,144 KB
testcase_37 AC 269 ms
22,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define rep(i, n) for (ll i = 0; i < (ll)(n); ++i)
#define repo(i, n) for (ll i = 1; i <= (ll)(n); ++i)
typedef long long ll;
ll n, m;
ll ans;

void dfs(const vector<vector<ll>> &G, int v, vector<bool> &seen, vector<ll> &c) {
    seen[v] = true;
    for (auto next_v : G[v]) { 
        if (seen[next_v] || c[v] != c[next_v]) continue; 
        dfs(G, next_v,seen,c);
    }
}

int main() {
    cin >> n >> m;
    vector<ll> c(n);
    for (ll i = 0; i < n; ++i) cin >> c[i];

    vector<vector<ll>> G(n);
    vector<bool> seen(n,false);
    
    for (int i = 0; i < m; ++i) {
        int a, b;
        cin >> a >> b;
        --a, --b;
        G[a].push_back(b);
        G[b].push_back(a);
    }

    vector<ll> count(n,0);
    vector<bool> checkd(n,false);

    for (ll i = 0; i < n; ++i) {
        if (seen[i]) continue;
        else {
            if(!checkd[c[i]-1]) {checkd[c[i]-1] = true; dfs(G,i,seen,c);}
            else {++count[c[i]-1];dfs(G,i,seen,c);}
        }
    }

    ll ans = 0;
    ans = accumulate(count.begin(), count.end(), 0);
    cout << ans << endl;
}
0