mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 03:18:53 +00:00
parent
4a2d663576
commit
6b8800472d
94
LibreOJ/101/101.cpp
Normal file
94
LibreOJ/101/101.cpp
Normal file
@ -0,0 +1,94 @@
|
||||
#include <cstring>
|
||||
#include <iostream>
|
||||
#include <limits>
|
||||
#include <queue>
|
||||
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
const char endl = '\n';
|
||||
|
||||
const int N = 105,
|
||||
M = 5005;
|
||||
|
||||
int n, m, s, t, flow;
|
||||
long long ans;
|
||||
|
||||
// Graph
|
||||
int idx, head[N], ver[M << 1], edge[M << 1], next[M << 1];
|
||||
|
||||
void add(int u, int v, int w) {
|
||||
next[idx] = head[u];
|
||||
ver[idx] = v;
|
||||
edge[idx] = w;
|
||||
head[u] = idx++;
|
||||
}
|
||||
|
||||
// Dinic
|
||||
int d[N], cur[N];
|
||||
|
||||
bool bfs() {
|
||||
memset(d, 0x00, sizeof(d));
|
||||
|
||||
std::queue<int> q;
|
||||
q.push(s);
|
||||
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 (!d[v] && w) {
|
||||
d[v] = d[u] + 1;
|
||||
cur[v] = head[v];
|
||||
if (v == t) return true;
|
||||
q.push(v);
|
||||
}
|
||||
}
|
||||
}
|
||||
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]) {
|
||||
int v = ver[i],
|
||||
w = edge[i];
|
||||
if (d[v] == d[u] + 1 && w) {
|
||||
int k = dinic(v, std::min(w, limit - flow));
|
||||
if (!k) d[v] = 0;
|
||||
edge[i] -= k;
|
||||
edge[i ^ 1] += k;
|
||||
flow += k;
|
||||
}
|
||||
}
|
||||
|
||||
return flow;
|
||||
}
|
||||
|
||||
int main() {
|
||||
std::ios::sync_with_stdio(false);
|
||||
|
||||
memset(head, 0xff, sizeof(head));
|
||||
|
||||
cin >> n >> m >> s >> t;
|
||||
for (int i = 1; i <= m; i++) {
|
||||
int u, v, w;
|
||||
cin >> u >> v >> w;
|
||||
add(u, v, w);
|
||||
add(v, u, 0);
|
||||
}
|
||||
|
||||
while (bfs()) {
|
||||
while (flow = dinic(s, std::numeric_limits<int>::max())) ans += flow;
|
||||
}
|
||||
|
||||
cout << ans << endl;
|
||||
|
||||
return 0;
|
||||
}
|
BIN
LibreOJ/101/data/1.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/1.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/1.out
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/1.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/2.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/2.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/2.out
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/2.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/3.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/3.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/3.out
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/3.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/4.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/4.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/4.out
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/4.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/5.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/5.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/5.out
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/5.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/6.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/6.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/6.out
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/6.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/7.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/7.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/7.out
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/7.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/8.in
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/8.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
LibreOJ/101/data/8.out
(Stored with Git LFS)
Normal file
BIN
LibreOJ/101/data/8.out
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user