結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー hiro1729hiro1729
提出日時 2023-09-10 19:43:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 1,323 ms
コンパイル使用メモリ 103,316 KB
実行使用メモリ 14,784 KB
最終ジャッジ日時 2024-11-14 12:25:39
合計ジャッジ時間 3,053 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 70 ms
13,016 KB
testcase_04 AC 24 ms
12,464 KB
testcase_05 AC 43 ms
6,820 KB
testcase_06 AC 52 ms
12,764 KB
testcase_07 AC 45 ms
6,816 KB
testcase_08 AC 57 ms
14,784 KB
testcase_09 AC 57 ms
7,424 KB
testcase_10 AC 69 ms
11,896 KB
testcase_11 AC 60 ms
11,264 KB
testcase_12 AC 45 ms
10,112 KB
testcase_13 AC 21 ms
6,816 KB
testcase_14 AC 39 ms
8,192 KB
testcase_15 AC 39 ms
6,816 KB
testcase_16 AC 69 ms
9,280 KB
testcase_17 AC 20 ms
6,820 KB
testcase_18 AC 42 ms
11,136 KB
testcase_19 AC 21 ms
11,676 KB
testcase_20 AC 43 ms
6,820 KB
testcase_21 AC 26 ms
6,820 KB
testcase_22 AC 24 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <atcoder/dsu>
using namespace std;

int main() {
	int n, m;
	cin >> n >> m;
	atcoder::dsu uf(2 * n);
	while (m--) {
		int u, v;
		cin >> u >> v;
		u--; v--;
		uf.merge(u, v);
	}
	int ans = 0;
	for (auto i: uf.groups()) ans += i.size() % 2;
	cout << ans / 2 << '\n';
}
0