結果
問題 | No.2418 情報通だよ!Nafmoくん |
ユーザー | hanba-gu1 |
提出日時 | 2023-08-12 15:15:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 189 ms / 2,000 ms |
コード長 | 1,358 bytes |
コンパイル時間 | 4,833 ms |
コンパイル使用メモリ | 274,444 KB |
実行使用メモリ | 42,320 KB |
最終ジャッジ日時 | 2024-11-14 12:24:19 |
合計ジャッジ時間 | 7,774 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 156 ms
36,164 KB |
testcase_04 | AC | 44 ms
33,428 KB |
testcase_05 | AC | 114 ms
19,128 KB |
testcase_06 | AC | 104 ms
31,540 KB |
testcase_07 | AC | 123 ms
18,816 KB |
testcase_08 | AC | 110 ms
42,320 KB |
testcase_09 | AC | 160 ms
24,596 KB |
testcase_10 | AC | 159 ms
35,732 KB |
testcase_11 | AC | 131 ms
32,912 KB |
testcase_12 | AC | 93 ms
27,412 KB |
testcase_13 | AC | 41 ms
12,228 KB |
testcase_14 | AC | 80 ms
20,676 KB |
testcase_15 | AC | 88 ms
11,556 KB |
testcase_16 | AC | 189 ms
30,280 KB |
testcase_17 | AC | 43 ms
8,576 KB |
testcase_18 | AC | 80 ms
27,492 KB |
testcase_19 | AC | 33 ms
23,916 KB |
testcase_20 | AC | 100 ms
12,416 KB |
testcase_21 | AC | 51 ms
16,308 KB |
testcase_22 | AC | 56 ms
10,880 KB |
testcase_23 | AC | 2 ms
6,816 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; using ll = int_fast64_t; using ull = uint_fast64_t; using mint = modint998244353; constexpr ll INF = 1ll << 60; #define iscontain(container, value) (find(container.begin(), container.end(), value) != container.end()) template<typename T, typename D> void printelem(const T& container, const D& divide){ for(const auto& i : container) cout << i << divide; cout << endl; } template<typename T> void printelem(const T& container) { printelem(container, ", "); } template<typename T> T input() { T ret; cin >> ret; return ret; } ll N, M; vector<set<ll>> mate; vector<ll> group; vector<set<ll>> member; vector<ll> belong; void make_group(ll p, ll g){ for(auto&& i : mate[p]){ if(belong[i] != -1) continue; belong[i] = g; member[g].insert(i); group[g]++; make_group(i, g); } } int main(){ //インプット cin >> N >> M; mate.resize(N*2); for(ll i = 0; i < M; i++){ ll A, B; cin >> A >> B, A--, B--; mate[A].insert(B); mate[B].insert(A); } belong.resize(N*2, -1); for(ll i = 0; i < N*2; i++){ if(belong[i] == -1){ belong[i] = group.size(); group.push_back(1); member.push_back({i}); make_group(i, belong[i]); } } ll ans = 0; for(auto&& i : group) ans += i % 2; //アウトプット cout << ans/2; return 0; }