結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー yansi819yansi819
提出日時 2024-03-18 09:20:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 4,548 ms
コンパイル使用メモリ 266,012 KB
実行使用メモリ 15,016 KB
最終ジャッジ日時 2024-11-14 12:26:03
合計ジャッジ時間 6,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 73 ms
13,080 KB
testcase_04 AC 25 ms
12,544 KB
testcase_05 AC 44 ms
6,820 KB
testcase_06 AC 54 ms
12,800 KB
testcase_07 AC 46 ms
6,816 KB
testcase_08 AC 59 ms
15,016 KB
testcase_09 AC 58 ms
7,424 KB
testcase_10 AC 72 ms
11,832 KB
testcase_11 AC 63 ms
11,420 KB
testcase_12 AC 45 ms
9,984 KB
testcase_13 AC 22 ms
6,820 KB
testcase_14 AC 39 ms
8,064 KB
testcase_15 AC 40 ms
6,820 KB
testcase_16 AC 70 ms
9,380 KB
testcase_17 AC 20 ms
6,816 KB
testcase_18 AC 43 ms
11,224 KB
testcase_19 AC 21 ms
11,904 KB
testcase_20 AC 43 ms
6,820 KB
testcase_21 AC 26 ms
6,816 KB
testcase_22 AC 25 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int N, M; cin >> N >> M;
  dsu uf(2 * N);
  for (int i = 0; i < M; i++) {
    int a, b; cin >> a >> b;
    a--, b--;
    uf.merge(a, b);
  }
  int ans = 0;
  for (auto g: uf.groups()) {
    if (g.size() % 2) ans++;
  }
  cout << ans / 2 << endl;
  return 0;
}
0