結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー 👑 Nafmo2Nafmo2
提出日時 2023-06-21 01:12:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 909 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 210,432 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-30 02:51:23
合計ジャッジ時間 4,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 39 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 43 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct UnionFind {
  vector<int> data;
  UnionFind(int sz) { data.assign(sz, -1); }

  bool unite(int x, int y) {
    x = find(x), y = find(y);
    if (x == y) return (false);
    if (data[x] > data[y]) std::swap(x, y);
    data[x] += data[y];
    data[y] = x;
    return (true);
  }

  int find(int k) {
    if (data[k] < 0) return (k);
    return (data[k] = find(data[k]));
  }

  bool same(int x, int y) { return find(x) == find(y); }
  int size(int k) { return (-data[find(k)]); }
};

int main(void) {
  int ans = 0;
  int N, M;
  cin >> N >> M;
  UnionFind uf(2 * N);
  for (int i = 0; i < M; i++) {
    int a, b;
    cin >> a >> b;
    a--, b--;
    uf.unite(a, b);
  }
  map<int, int> parent;
  for (int i = 0; i < 2 * N; i++) {
    parent[uf.find(i)]++;
  }
  for (auto [x, y] : parent) {
    if (y & 1) {
      ans++;
    }
  }
  cout << ans << endl;
}
0