結果
問題 | No.2418 情報通だよ!Nafmoくん |
ユーザー | bortik |
提出日時 | 2023-08-16 02:58:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,117 bytes |
コンパイル時間 | 2,269 ms |
コンパイル使用メモリ | 214,224 KB |
実行使用メモリ | 12,644 KB |
最終ジャッジ日時 | 2024-05-03 12:35:40 |
合計ジャッジ時間 | 4,665 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 19 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 12 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 22 ms
6,940 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define rep(i, a, n) for (int i = (int)(a); i < (int)(n); i++) #define rrep(i, n, a) for (int i = (int)(n); i >= (int)(a); i--) void solve(){ int n,m; cin >> n >> m; vector<vector<int>> adj(2*n); rep(i,0,m){ int x,y; cin >> x >> y; x--;y--; adj[x].push_back(y); adj[y].push_back(x); } vector<int> color(2*n); iota(color.begin(), color.end(), 1); vector<bool> seen(n*2, false); stack<int> todo; rep(i,0,2*n) todo.push(i); while(!todo.empty()){ int x = todo.top(); todo.pop(); if(seen[x]) continue; seen[x] = true; for(int u: adj[x]){ color[u] = color[x]; todo.push(u); } } int ans = 0; sort(color.begin(), color.end()); int s = 1; rep(i,1,2*n){ if(color[i] != color[i-1]){ s = 1; ans += s % 2; } else s++; } ans += s % 2; cout << ans/2; } int main(){ ios::sync_with_stdio(false); cin.tie(0); solve(); return 0; }