結果
問題 | No.2418 情報通だよ!Nafmoくん |
ユーザー | dyktr_06 |
提出日時 | 2023-06-21 01:48:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 25 ms / 2,000 ms |
コード長 | 1,356 bytes |
コンパイル時間 | 2,332 ms |
コンパイル使用メモリ | 204,124 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 12:19:51 |
合計ジャッジ時間 | 3,467 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 22 ms
6,820 KB |
testcase_04 | AC | 5 ms
6,820 KB |
testcase_05 | AC | 17 ms
6,820 KB |
testcase_06 | AC | 15 ms
6,816 KB |
testcase_07 | AC | 19 ms
6,816 KB |
testcase_08 | AC | 15 ms
6,816 KB |
testcase_09 | AC | 22 ms
6,820 KB |
testcase_10 | AC | 23 ms
6,820 KB |
testcase_11 | AC | 20 ms
6,816 KB |
testcase_12 | AC | 14 ms
6,816 KB |
testcase_13 | AC | 7 ms
6,816 KB |
testcase_14 | AC | 13 ms
6,816 KB |
testcase_15 | AC | 14 ms
6,816 KB |
testcase_16 | AC | 25 ms
6,820 KB |
testcase_17 | AC | 9 ms
6,816 KB |
testcase_18 | AC | 13 ms
6,816 KB |
testcase_19 | AC | 4 ms
6,816 KB |
testcase_20 | AC | 16 ms
6,816 KB |
testcase_21 | AC | 9 ms
6,816 KB |
testcase_22 | AC | 10 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; struct UnionFind{ vector<int> par; vector<int> edg; UnionFind(int N) : par(N), edg(N){ for(int i = 0; i < N; ++i){ par[i] = -1; edg[i] = 0; } } int root(int x){ if(par[x] < 0) return x; return par[x] = root(par[x]); } void unite(int x, int y){ int rx = root(x); int ry = root(y); if(rx == ry){ edg[rx]++; return; } par[ry] = par[rx] + par[ry]; par[rx] = ry; edg[ry] += edg[rx] + 1; } bool same(int x, int y){ int rx = root(x); int ry = root(y); return rx == ry; } long long size(int x){ return -par[root(x)]; } long long edge(int x){ return edg[root(x)]; } }; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n, m; cin >> n >> m; assert(1 <= n <= 100000); assert(0 <= m <= 100000); UnionFind uf(2 * n); for(int i = 0; i < m; i++){ int a, b; cin >> a >> b; assert(1 <= a <= 2 * n); assert(1 <= b <= 2 * n); a--, b--; uf.unite(a, b); } int ans = 0; for(int i = 0; i < 2 * n; i++){ if(uf.root(i) == i && uf.size(i) % 2) ans++; } cout << ans / 2 << endl; }