結果
問題 | No.2418 情報通だよ!Nafmoくん |
ユーザー | LaFolia13 |
提出日時 | 2023-07-29 16:55:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 97 ms / 2,000 ms |
コード長 | 1,123 bytes |
コンパイル時間 | 2,009 ms |
コンパイル使用メモリ | 175,492 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-11-14 12:20:04 |
合計ジャッジ時間 | 4,000 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 97 ms
8,704 KB |
testcase_04 | AC | 55 ms
10,112 KB |
testcase_05 | AC | 44 ms
6,820 KB |
testcase_06 | AC | 77 ms
9,216 KB |
testcase_07 | AC | 45 ms
6,820 KB |
testcase_08 | AC | 87 ms
11,008 KB |
testcase_09 | AC | 56 ms
6,816 KB |
testcase_10 | AC | 93 ms
7,808 KB |
testcase_11 | AC | 83 ms
7,680 KB |
testcase_12 | AC | 61 ms
7,168 KB |
testcase_13 | AC | 25 ms
6,820 KB |
testcase_14 | AC | 48 ms
6,820 KB |
testcase_15 | AC | 38 ms
6,820 KB |
testcase_16 | AC | 73 ms
6,820 KB |
testcase_17 | AC | 20 ms
6,820 KB |
testcase_18 | AC | 61 ms
8,320 KB |
testcase_19 | AC | 55 ms
9,600 KB |
testcase_20 | AC | 42 ms
6,816 KB |
testcase_21 | AC | 33 ms
6,816 KB |
testcase_22 | AC | 24 ms
6,816 KB |
testcase_23 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using llong = long long; using ldbl = long double; using lpair = pair<llong, llong>; #define ALL(x) x.begin(), x.end() constexpr llong mod = 1e9+7; constexpr llong inf = mod * mod; struct union_find { std::vector<int> par; union_find() {} union_find(int n) : par(n+1, -1) {} int root(int x) { if(par[x] < 0) return x; return par[x] = root(par[x]); } int size(int x) { return -par[root(x)]; } bool same(int a, int b) { return root(a) == root(b); } bool merge(int a, int b) { a = root(a), b = root(b); if(a == b) return false; if(par[a] > par[b]) std::swap(a, b); par[a] += par[b]; par[b] = a; return true; } }; int main() { llong N, M; cin >> N >> M; union_find uf(2 * N); for (int i = 0; i < M; i++) { llong A, B; cin >> A >> B; uf.merge(A, B); } set<llong> used; llong cnt = 0; for (int i = 1; i <= 2 * N; i++) { if (used.count(uf.root(i))) { continue; } used.insert(uf.root(i)); cnt += uf.size(i) % 2; } cout << cnt / 2 << endl; return 0; }