結果
問題 | No.2286 Join Hands |
ユーザー | shobonvip |
提出日時 | 2023-04-28 22:50:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,139 bytes |
コンパイル時間 | 3,730 ms |
コンパイル使用メモリ | 274,980 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-17 21:47:06 |
合計ジャッジ時間 | 7,129 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | RE | - |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 4 ms
5,248 KB |
testcase_10 | AC | 5 ms
5,248 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | AC | 5 ms
5,248 KB |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | AC | 4 ms
5,248 KB |
testcase_18 | AC | 5 ms
5,248 KB |
testcase_19 | RE | - |
testcase_20 | AC | 4 ms
5,248 KB |
testcase_21 | RE | - |
testcase_22 | AC | 3 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 4 ms
5,248 KB |
testcase_25 | AC | 3 ms
5,248 KB |
testcase_26 | AC | 3 ms
5,248 KB |
testcase_27 | AC | 3 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | RE | - |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | AC | 2 ms
5,248 KB |
testcase_35 | RE | - |
testcase_36 | AC | 1 ms
5,248 KB |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | AC | 1 ms
5,248 KB |
testcase_40 | WA | - |
testcase_41 | AC | 1 ms
5,248 KB |
testcase_42 | AC | 1 ms
5,248 KB |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | AC | 5 ms
5,248 KB |
testcase_48 | RE | - |
testcase_49 | AC | 4 ms
5,248 KB |
testcase_50 | RE | - |
testcase_51 | AC | 2 ms
5,248 KB |
testcase_52 | AC | 4 ms
5,248 KB |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | RE | - |
testcase_56 | AC | 5 ms
5,248 KB |
testcase_57 | RE | - |
testcase_58 | AC | 5 ms
5,248 KB |
testcase_59 | RE | - |
testcase_60 | AC | 4 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; typedef modint998244353 mint; typedef long long ll; // https://qiita.com/Kutimoti_T/items/5b579773e0a24d650bdf /** * @brief Gabow Edmonds(一般グラフの最大マッチング) * @docs docs/gabow-edmonds.md */ struct GabowEdmonds { struct edge { int to, idx; }; vector< vector< edge > > g; vector< pair< int, int > > edges; vector< int > mate, label, first; queue< int > que; GabowEdmonds(int n) : g(n + 1), mate(n + 1), label(n + 1, -1), first(n + 1) {} void add_edge(int u, int v) { ++u, ++v; g[u].push_back((edge) {v, (int) (edges.size() + g.size())}); g[v].push_back((edge) {u, (int) (edges.size() + g.size())}); edges.emplace_back(u, v); } int find(int x) { if(label[first[x]] < 0) return first[x]; first[x] = find(first[x]); return first[x]; } void rematch(int v, int w) { int t = mate[v]; mate[v] = w; if(mate[t] != v) return; if(label[v] < (int)g.size()) { mate[t] = label[v]; rematch(label[v], t); } else { int x = edges[label[v] - g.size()].first; int y = edges[label[v] - g.size()].second; rematch(x, y); rematch(y, x); } } void assign_label(int x, int y, int num) { int r = find(x); int s = find(y); int join = 0; if(r == s) return; label[r] = -num; label[s] = -num; while(true) { if(s != 0) swap(r, s); r = find(label[mate[r]]); if(label[r] == -num) { join = r; break; } label[r] = -num; } int v = first[x]; while(v != join) { que.push(v); label[v] = num; first[v] = join; v = first[label[mate[v]]]; } v = first[y]; while(v != join) { que.push(v); label[v] = num; first[v] = join; v = first[label[mate[v]]]; } } bool augment_check(int u) { que = queue< int >(); first[u] = 0; label[u] = 0; que.push(u); while(!que.empty()) { int x = que.front(); que.pop(); for(auto e : g[x]) { int y = e.to; if(mate[y] == 0 && y != u) { mate[y] = x; rematch(x, y); return true; } else if(label[y] >= 0) { assign_label(x, y, e.idx); } else if(label[mate[y]] < 0) { label[mate[y]] = x; first[mate[y]] = y; que.push(mate[y]); } } } return false; } vector< pair< int, int > > max_matching() { for(int i = 1; i < (int)g.size(); i++) { if(mate[i] != 0) continue; if(augment_check(i)) label.assign(g.size(), -1); } vector< pair< int, int > > ret; for(int i = 1; i < (int)g.size(); i++) { if(i < mate[i]) ret.emplace_back(i - 1, mate[i] - 1); } return ret; } }; int main(){ int n, m; cin >> n >> m; if (n%2==0){ GabowEdmonds fw(n); for (int i=0; i<m; i++){ int u, v; cin >> u >> v; u--; v--; fw.add_edge(u, v); } auto ret = fw.max_matching(); cout << ((int)ret.size()*2 - (n/2-(int)ret.size())*2) << endl; }else{ assert(1==0); } }