#include using namespace std; template class UnionFind { std::vector parent; public: std::vector children_count; /* サイズ n の素集合を作成: o(n) */ UnionFind(const std::size_t &n) : parent(n), children_count(n, 0) { for (std::size_t i = 0; i < n; i++) parent[i] = Node(i); } /* ノード x が属する木の根を返す:𝑶(α(n)) */ [[nodiscard]] Node root(const Node &x) { if (parent[x] == x) return x; Node root_x = root(parent[x]); children_count[parent[x]] -= children_count[x]; return parent[x] = root_x; } /* 木x と 木y を併合し成功したかを返す:𝑶(α(n)) */ bool merge(const Node &x, const Node &y) { unsigned root_x = root(x); unsigned root_y = root(y); if (root_x == root_y) return false; if (children_count[root_x] > children_count[root_y]) swap(root_x, root_y); parent[root_x] = root_y; if (children_count[root_x]) children_count[root_y] += children_count[root_x]; else children_count[root_y] += 1; return true; } /* ノード x, y が属する木は同じか:𝑶(α(n)) */ [[nodiscard]] bool same(const Node &x, const Node &y) { return root(x) == root(y); } }; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); uint N, M; cin >> N >> M; UnionFind uf(2*N+1); for (uint i=1; i<= M; i++){ uint Ai, Bi; cin >> Ai >> Bi; uf.merge(Ai, Bi); } set roots; uint non_paired = 0; for (uint i=1; i<=2*N; i++){ uint root_i = uf.root(i); if (roots.find(root_i) == roots.end()) { roots.insert(root_i); non_paired += (uf.children_count[root_i]+1) % 2; } } cout << non_paired / 2 << '\n'; return 0; }