結果

問題 No.2563 色ごとのグループ
ユーザー hatsuka_iwahatsuka_iwa
提出日時 2023-12-07 22:06:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 714 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 207,880 KB
実行使用メモリ 18,304 KB
最終ジャッジ日時 2024-09-27 02:22:38
合計ジャッジ時間 6,745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 13 ms
5,376 KB
testcase_21 AC 9 ms
5,376 KB
testcase_22 AC 7 ms
5,376 KB
testcase_23 AC 13 ms
5,376 KB
testcase_24 AC 108 ms
5,632 KB
testcase_25 AC 88 ms
6,144 KB
testcase_26 AC 122 ms
7,424 KB
testcase_27 AC 100 ms
9,216 KB
testcase_28 AC 140 ms
7,936 KB
testcase_29 AC 189 ms
9,472 KB
testcase_30 AC 188 ms
9,472 KB
testcase_31 AC 189 ms
9,472 KB
testcase_32 AC 190 ms
9,472 KB
testcase_33 AC 313 ms
18,304 KB
testcase_34 AC 288 ms
18,304 KB
testcase_35 AC 288 ms
18,304 KB
testcase_36 AC 298 ms
18,304 KB
testcase_37 AC 308 ms
18,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int N, M, Ans = 0; cin >> N >> M;
  vector<int> C(N), Count(N, -1); for (int &A : C) { cin >> A; A--; }
  vector<bool> seen(N);
  vector<vector<int>> G(N);

  for (int i = 0; i < M; i++) {
    int u, v; cin >> u >> v;
    u--; v--;
    if (C.at(u) == C.at(v)) {
      G.at(u).push_back(v);
      G.at(v).push_back(u);
    }
  }

  auto DFS = [&](auto DFS, int x) -> void {
    seen.at(x) = true;
    for (int to : G.at(x))
      if (!seen.at(to)) DFS(DFS, to);
  };

  for (int i = 0; i < N; i++) {
    if (!seen.at(i)) {
      Count.at(C.at(i))++;
      DFS(DFS, i);
    }
  }

  for (int i : Count)
    if (i != -1) Ans += i;
  cout << Ans << endl;
}
0