mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-27 19:36:28 +00:00
parent
f38e430d75
commit
c968af6487
@ -1,45 +1,108 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <array>
|
#include <algorithm>
|
||||||
#include <vector>
|
#include <queue>
|
||||||
|
|
||||||
using std::cin;
|
using std::cin;
|
||||||
using std::cout;
|
using std::cout;
|
||||||
const char endl = '\n';
|
const char endl = '\n';
|
||||||
|
|
||||||
const int N = 505;
|
const int N = 505,
|
||||||
|
M = 5e4 + 5;
|
||||||
|
const int INF = 0x3f3f3f3f;
|
||||||
|
|
||||||
int n, m, e, tag[N], match[N], ans;
|
int n, m, e, s, t, flow, ans;
|
||||||
std::array<std::vector<int>, N> g;
|
int idx, head[N << 1], ver[M << 2], edge[M << 2], next[M << 2];
|
||||||
|
int d[N << 1], cur[N << 1];
|
||||||
|
|
||||||
bool dfs(int u, int t) {
|
void add(int u, int v, int w) {
|
||||||
if (tag[u] == t) return false;
|
next[idx] = head[u];
|
||||||
|
ver[idx] = v;
|
||||||
|
edge[idx] = w;
|
||||||
|
head[u] = idx++;
|
||||||
|
}
|
||||||
|
|
||||||
tag[u] = t;
|
bool bfs() {
|
||||||
|
std::fill_n(d, N << 1, 0);
|
||||||
|
|
||||||
for (int v : g[u]) {
|
std::queue<int> q;
|
||||||
if (!match[v] || dfs(match[v], t)) {
|
|
||||||
match[v] = u;
|
q.emplace(s);
|
||||||
return true;
|
d[s] = 1;
|
||||||
|
cur[s] = head[s];
|
||||||
|
|
||||||
|
while (!q.empty()) {
|
||||||
|
int u = q.front();
|
||||||
|
q.pop();
|
||||||
|
|
||||||
|
for (int i = head[u]; ~i; i = next[i]) {
|
||||||
|
int v = ver[i],
|
||||||
|
w = edge[i];
|
||||||
|
|
||||||
|
if (w && !d[v]) {
|
||||||
|
d[v] = d[u] + 1;
|
||||||
|
cur[v] = head[v];
|
||||||
|
if (v == t) return true;
|
||||||
|
q.emplace(v);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int dinic(int u, int limit) {
|
||||||
|
if (u == t) return limit;
|
||||||
|
|
||||||
|
int flow = 0;
|
||||||
|
for (int i = cur[u]; ~i && flow < limit; i = next[i]) {
|
||||||
|
cur[u] = i;
|
||||||
|
|
||||||
|
int v = ver[i],
|
||||||
|
w = edge[i];
|
||||||
|
|
||||||
|
if (w && d[v] == d[u] + 1) {
|
||||||
|
int k = dinic(v, std::min(limit - flow, w));
|
||||||
|
|
||||||
|
if (!k) d[v] = 0;
|
||||||
|
|
||||||
|
edge[i] -= k;
|
||||||
|
edge[i ^ 1] += k;
|
||||||
|
flow += k;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return flow;
|
||||||
|
}
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
std::ios::sync_with_stdio(false);
|
std::ios::sync_with_stdio(false);
|
||||||
cin.tie(nullptr);
|
cin.tie(nullptr);
|
||||||
|
|
||||||
|
std::fill_n(head, N << 1, -1);
|
||||||
|
|
||||||
cin >> n >> m >> e;
|
cin >> n >> m >> e;
|
||||||
|
|
||||||
|
s = 0, t = n + m + 1;
|
||||||
|
|
||||||
|
for (int i = 1; i <= n; i++) {
|
||||||
|
add(s, i, 1);
|
||||||
|
add(i, s, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 1; i <= m; i++) {
|
||||||
|
add(n + i, t, 1);
|
||||||
|
add(t, n + i, 0);
|
||||||
|
}
|
||||||
|
|
||||||
for (int i = 1, u, v; i <= e; i++) {
|
for (int i = 1, u, v; i <= e; i++) {
|
||||||
cin >> u >> v;
|
cin >> u >> v;
|
||||||
|
|
||||||
g[u].emplace_back(v);
|
add(u, n + v, 1);
|
||||||
|
add(n + v, u, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 1; i <= n; i++) {
|
while (bfs()) {
|
||||||
if (dfs(i, i)) ans++;
|
while (flow = dinic(s, INF)) ans += flow;
|
||||||
}
|
}
|
||||||
|
|
||||||
cout << ans << endl;
|
cout << ans << endl;
|
||||||
|
BIN
Luogu/P3386/data/P3386_5.in
(Stored with Git LFS)
Normal file
BIN
Luogu/P3386/data/P3386_5.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
Luogu/P3386/data/P3386_5.out
(Stored with Git LFS)
Normal file
BIN
Luogu/P3386/data/P3386_5.out
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user