• CodeForces 362E Petya and Pipes


    Description

    给一个 (n) 个点的网络流图,每次可以让一条边的最大流量增加 (1) ,最多 (k) 次,求最大流量。

    (nle 50,0le kle 10^3)

    Solution

    把原图每条边 ((u,v,c)) 拆成两条代费用的边 ((u,v,c,0))((u,v,k,1)) ,增广到费用大于 (k) 为止。

    #include<bits/stdc++.h>
    using namespace std;
    
    template <class T> void read(T &x) {
    	x = 0; bool flag = 0; char ch = getchar(); for (; ch < '0' || ch > '9'; ch = getchar()) flag |= ch == '-';
    	for (; ch >= '0' && ch <= '9'; ch = getchar()) x = x * 10 + ch - 48; flag ? x = ~x + 1 : 0;
    }
    
    #define N 51
    #define rep(i, a, b) for (int i = (a); i <= (b); i++)
    #define INF 0x3f3f3f3f
    
    int k;
    
    int flow, cost, head[N], tot = 1, dis[N], pre[N];
    struct { int v, c, w, next; }e[100010];
    queue<int> q;
    bool inq[N];
    inline void insert(int u, int v, int c, int w) {
    	e[++tot].v = v, e[tot].c = c, e[tot].w = w, e[tot].next = head[u], head[u] = tot;
    }
    inline void add(int u, int v, int c, int w) {
    	insert(u, v, c, w), insert(v, u, 0, -w);
    }
    bool spfa(int S, int T) {
    	memset(dis, 0x3f, sizeof dis); dis[S] = 0, q.push(S);
    	while (!q.empty()) {
    		int u = q.front(); q.pop(), inq[u] = 0;
    		for (int i = head[u], v; i; i = e[i].next) e[i].c && dis[v = e[i].v] > dis[u] + e[i].w ?
    			dis[v] = dis[u] + e[i].w, pre[v] = i, (!inq[v] ? q.push(v), inq[v] = 1 : 0) : 0;
    	}
    	if (dis[T] >= INF) return 0;
    	int d = INF;
    	for (int i = T; i != S; i = e[pre[i] ^ 1].v) d = min(d, e[pre[i]].c);
    	if (cost + d * dis[T] > k) {
    		flow += (k - cost) / dis[T];
    		return 0;
    	}
    	return 1;
    }
    void mcf(int S, int T) {
    	int d = INF;
    	for (int i = T; i != S; i = e[pre[i] ^ 1].v) d = min(d, e[pre[i]].c);
    	for (int i = T; i != S; i = e[pre[i] ^ 1].v) e[pre[i]].c -= d, e[pre[i] ^ 1].c += d, cost += d * e[pre[i]].w;
    	flow += d;
    }
    
    int main() {
    	int n; read(n), read(k);
    	rep(i, 1, n) rep(j, 1, n) {
    		int f; read(f);
    		if (f) add(i, j, f, 0), add(i, j, k, 1);
    	}
    	int ans = 0;
    	while (spfa(1, n)) mcf(1, n);
    	cout << flow;
    	return 0;
    }
    
  • 相关阅读:
    golang json处理
    关于单例模式中懒汉模式和饿汉模式的学习
    关于Lambda表达式的研究
    左值和右值得研究
    关于epoll的详解说明关于epoll的详解说明
    关于c++中条件变量的分析
    关于c++种std::function和bind的用法
    关于iterator_traits的使用
    STL容器之deque数据结构解析
    STL容器之Array的用法
  • 原文地址:https://www.cnblogs.com/aziint/p/9609720.html
Copyright © 2020-2023  润新知