0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 20:05:23 +00:00
OI-codes/Luogu/P2153/P2153.cpp

116 lines
2.2 KiB
C++
Raw Normal View History

2022-03-22 12:55:12 +00:00
#include <cstring>
#include <iostream>
#include <queue>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 205 << 1,
M = 20005 << 1,
INF = 0x3f3f3f3f;
int n, m, s, t, flow, cost;
// Graph
int idx, head[N], ver[M << 1], next[M << 1];
std::pair<int, int> edge[M << 1];
2022-05-20 01:23:27 +00:00
2022-03-22 12:55:12 +00:00
// <flow, cost>
void add(int u, int v, int flow, int cost) {
next[idx] = head[u];
ver[idx] = v;
edge[idx] = std::make_pair(flow, cost);
head[u] = idx++;
}
// Dinic
int dist[N];
bool vis[N];
bool spfa() {
memset(vis, 0x00, sizeof(vis));
memset(dist, 0x3f, sizeof(dist));
std::queue<int> q;
q.push(s);
dist[s] = 0;
vis[s] = true;
while (!q.empty()) {
int u = q.front();
q.pop();
vis[u] = false;
for (int i = head[u]; ~i; i = next[i]) {
int v = ver[i],
c = edge[i].first,
w = edge[i].second;
if (dist[v] > dist[u] + w && c > 0) {
dist[v] = dist[u] + w;
if (!vis[v]) {
q.push(v);
vis[v] = true;
}
}
}
}
return dist[t] != INF;
}
int dinic(int u, int limit) {
if (u == t) return limit;
int flow = 0;
vis[u] = true;
for (int i = head[u]; ~i && flow < limit; i = next[i]) {
int v = ver[i],
c = edge[i].first,
w = edge[i].second;
if (dist[v] == dist[u] + w && c && !vis[v]) {
int k = dinic(v, std::min(c, limit - flow));
if (!k) dist[v] = INF;
edge[i].first -= k;
edge[i ^ 1].first += k;
flow += k;
cost += k * w;
}
}
vis[u] = false;
return flow;
}
int main() {
std::ios::sync_with_stdio(false);
memset(head, 0xff, sizeof(head));
cin >> n >> m;
for (int i = 1; i <= m; i++) {
int u, v, w;
cin >> u >> v >> w;
add(u + n, v, 1, w);
add(v, u + n, 0, -w);
}
s = n + 1, t = n;
for (int i = 1; i <= n; i++) {
add(i, i + n, 1, 0);
add(i + n, i, 0, 0);
}
while (spfa()) {
flow += dinic(s, INF);
}
cout << flow << ' ' << cost << endl;
return 0;
}