結果

問題 No.2563 色ごとのグループ
ユーザー hanagehanage
提出日時 2023-12-02 15:01:21
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 660 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 210,352 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-09-26 17:54:52
合計ジャッジ時間 6,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 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 WA -
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 WA -
testcase_15 RE -
testcase_16 AC 3 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 3 ms
5,376 KB
testcase_19 RE -
testcase_20 AC 14 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 7 ms
5,376 KB
testcase_23 AC 12 ms
5,376 KB
testcase_24 AC 110 ms
8,704 KB
testcase_25 AC 90 ms
9,472 KB
testcase_26 AC 125 ms
12,672 KB
testcase_27 AC 114 ms
16,512 KB
testcase_28 AC 141 ms
13,824 KB
testcase_29 AC 198 ms
17,280 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 197 ms
17,280 KB
testcase_33 AC 194 ms
12,800 KB
testcase_34 AC 194 ms
12,672 KB
testcase_35 AC 191 ms
12,672 KB
testcase_36 AC 196 ms
12,672 KB
testcase_37 AC 195 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/dsu>
using namespace atcoder;
int main() {
  int N, M;
  cin >> N >> M;
  vector<int> C(N);
  for (int i = 0; i < N; i++) {
    cin >> C[i];
  }
  dsu Union(N);
  for (int i = 0; i < M; i++) {
    int u, v;
    cin >> u >> v;
    u--, v--;
    if (C[u] == C[v]) {
      Union.merge(u, v);
    }
  }
  auto g = Union.groups();
  vector<int> cnt(N);
  for (auto x : g) {
    // for (auto y : x) cout << y << " ";
    // cout << endl;
    cnt[C[x[0]]]++;
  }
  int ans = 0;
  for (int i = 0; i < N; i++) {
    if (cnt[i] > 0) {
      ans += cnt[i] - 1;
    }
  }
  cout << ans << endl;
  return 0;
}
0