結果

問題 No.2563 色ごとのグループ
ユーザー LevyxLevyx
提出日時 2023-12-02 15:27:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 5,426 ms
コンパイル使用メモリ 318,892 KB
実行使用メモリ 32,384 KB
最終ジャッジ日時 2024-09-26 18:43:25
合計ジャッジ時間 10,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 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 3 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 4 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 19 ms
5,760 KB
testcase_21 AC 12 ms
5,376 KB
testcase_22 AC 9 ms
5,376 KB
testcase_23 AC 15 ms
5,376 KB
testcase_24 AC 148 ms
14,464 KB
testcase_25 AC 135 ms
16,256 KB
testcase_26 AC 212 ms
22,912 KB
testcase_27 AC 249 ms
30,720 KB
testcase_28 AC 249 ms
24,960 KB
testcase_29 AC 338 ms
32,384 KB
testcase_30 AC 352 ms
32,256 KB
testcase_31 AC 353 ms
32,256 KB
testcase_32 AC 340 ms
32,384 KB
testcase_33 AC 223 ms
16,512 KB
testcase_34 AC 219 ms
16,384 KB
testcase_35 AC 216 ms
16,640 KB
testcase_36 AC 217 ms
16,640 KB
testcase_37 AC 221 ms
16,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, s, n) for (int i = (s); i < (int)(n); i++)
#include <atcoder/all>
using namespace atcoder;
using mint1 = modint1000000007;
using mint2 = modint998244353;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
ld pi=3.141592653589793;
const int inf=2e9;
const ll linf=2e18;
const ld eps=1e-14;
#define Yes cout << "Yes" << endl
#define No cout << "No" << endl

int main() {
    ll n,m;
    cin >> n >> m;
    vector<ll> c(n);
    map<ll,ll> mp;
    for(ll i=0; i<n; i++) {
        cin >> c[i];
        mp[c[i]]++;
    }
    dsu uf(n);
    for(ll i=0; i<m; i++) {
        ll u,v;
        cin >> u >> v;
        u--,v--;
        if(c[u]==c[v]) {
            uf.merge(u,v);
        }
    }
    vector<set<ll>> st(n+1);
    for(ll i=0; i<n; i++) {
        st[c[i]].insert(uf.leader(i));
    }
    ll ans=0;
    for(ll i=0; i<=n; i++) {
        ans+=max((ll)st[i].size()-1LL,0LL);
    }
    cout << ans << endl;
}
0