結果

問題 No.2563 色ごとのグループ
ユーザー akiaki
提出日時 2023-11-23 14:25:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 976 bytes
コンパイル時間 2,478 ms
コンパイル使用メモリ 211,020 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-09-26 16:33:16
合計ジャッジ時間 7,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 WA -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 2 ms
5,376 KB
testcase_14 RE -
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 RE -
testcase_19 AC 3 ms
5,376 KB
testcase_20 RE -
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 6 ms
5,376 KB
testcase_24 AC 40 ms
5,888 KB
testcase_25 AC 35 ms
6,016 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 56 ms
7,808 KB
testcase_29 AC 76 ms
9,472 KB
testcase_30 AC 76 ms
9,396 KB
testcase_31 WA -
testcase_32 AC 77 ms
9,472 KB
testcase_33 AC 166 ms
15,232 KB
testcase_34 AC 160 ms
15,160 KB
testcase_35 AC 164 ms
15,104 KB
testcase_36 AC 164 ms
15,232 KB
testcase_37 AC 167 ms
15,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);++i)
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int n,m;
    cin >> n >> m;
    vector<int> c(n);
    rep(i,n) cin >> c[i],c[i]--;
    vector<vector<int>> g(n);
    rep(i,m){
        int a,b;
        cin >> a >> b;
        a--;b--;
        if(c[a]!=c[b]) continue;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    vector<int> cnt(m,0);
    vector<bool> dist(n,false);
    rep(i,n){
        if(dist[i]) continue;
        
        queue<int> q;
        q.push(i);
        dist[i]=true;
        while(!q.empty()){
            int t = q.front();
            q.pop();
            for(int x:g[t]){
                if(dist[x]) continue;
                dist[x]=true;
                q.push(x);
            }
        }
        cnt[c[i]]++;
    }
    int ans = 0;
    rep(i,m) if(cnt[i]>0) ans += cnt[i]-1;
    cout << ans << endl;
}
0