結果

問題 No.2563 色ごとのグループ
ユーザー yansi819yansi819
提出日時 2024-03-16 14:27:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 2,523 ms
コンパイル使用メモリ 217,308 KB
実行使用メモリ 23,196 KB
最終ジャッジ日時 2024-09-30 03:58:32
合計ジャッジ時間 7,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 3 ms
6,820 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 5 ms
6,820 KB
testcase_20 AC 15 ms
6,816 KB
testcase_21 AC 9 ms
6,816 KB
testcase_22 AC 7 ms
6,816 KB
testcase_23 AC 12 ms
6,816 KB
testcase_24 AC 117 ms
11,008 KB
testcase_25 AC 104 ms
12,160 KB
testcase_26 AC 151 ms
16,640 KB
testcase_27 AC 157 ms
22,180 KB
testcase_28 AC 179 ms
18,160 KB
testcase_29 AC 247 ms
23,196 KB
testcase_30 AC 241 ms
23,192 KB
testcase_31 AC 255 ms
23,180 KB
testcase_32 AC 258 ms
23,184 KB
testcase_33 AC 177 ms
12,656 KB
testcase_34 AC 171 ms
12,728 KB
testcase_35 AC 171 ms
12,724 KB
testcase_36 AC 172 ms
12,616 KB
testcase_37 AC 180 ms
12,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/dsu>
using namespace std;
using namespace atcoder;
using ll = long long;

int N, M;
int C[202020];
int u, v;
map<int, int> mp;

int main(void){
  cin >> N >> M;
  for (int i = 0; i < N; i++) {
    cin >> C[i];
    mp[C[i]]++;
  }
  dsu uf(N);
  for (int i = 0; i < M; i++) {
    cin >> u >> v;
    u--, v--;
    if (C[u] == C[v]) uf.merge(u, v);
  }
  cout << uf.groups().size() - mp.size() << endl;
  return 0;
}
0