⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dsp.cpp

📁 C++语言下, 关于图论算法的一些模版, 包括一般图最大匹配, km匹配, 最小割等等, 共15个模版
💻 CPP
字号:
#include <cstdio>
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;

const int N = 5120;
const int INF = 1 << 28;

class Edge {
public:
	int u, v, cuv, cvu, flow;
	Edge() {}
	Edge(int cu, int cv, int ccu, int ccv) : u(cu), v(cv), cuv(ccu), cvu(ccv), flow(0) {}
	int other(int p) const { return p == u ? v : u; }
	int cap(int p) const { return p == u ? cuv-flow : cvu+flow; }
	void addFlow(int p, int f) { flow += (p == u ? f : -f); }
};

class Network {
private:
	vector<Edge> eg;
	vector<Edge*> net[N];
	Edge* prev[N];
	int v, s, t;
	int h[N], hn[2*N], cur[N];
	void initNet();
	void initFlow();
	void initHeight();
	void gapHeuristic(int);
public:
	int maxFlow(int, int);
};
void Network::initHeight() {
	memset(h, 0, sizeof(h)); memset(hn, 0, sizeof(hn));
	for(int i = 0; i < v; i++) h[i] = v;
	queue<int> Q; Q.push(t); h[t] = 0;
	while(!Q.empty()) {
		int p = Q.front(); Q.pop();
		for(int i = net[p].size()-1; i >= 0; i--) {
			int u = net[p][i]->other(p), ec = net[p][i]->cap(u);
			if(ec != 0 && h[u] == v) { h[u] = h[p]+1; Q.push(u); }
		}
	}
	for(int i = 0; i < v; i++) hn[h[i]]++;
}
void Network::gapHeuristic(int k) {
	if(hn[k] != 0) return;
	for(int i = 0; i < v; i++)
		if(h[i] > k) h[i] = v;
	for(int i = k; i < v; i++)
		{ hn[v] += hn[i]; hn[i] = 0; }
}
void Network::initNet() {
	for(int i = 0; i < v; i++) net[i].clear();
	for(int i = eg.size()-1; i >= 0; i--) {
		net[eg[i].u].push_back(&eg[i]);
		net[eg[i].v].push_back(&eg[i]);
	}
}
void Network::initFlow() {
	initNet(); initHeight();
	for(int i = 0; i < v; i++) cur[i] = net[i].size()-1;
}
int Network::maxFlow(int ss, int tt) {
	s = ss; t = tt; initFlow();
	int c = s, pre[N], flow = 0;
	pre[s] = -1;
	while(h[s] < v) {
		for(; cur[c] >= 0; cur[c]--)
			if(net[c][cur[c]]->cap(c) != 0 && h[c] == h[net[c][cur[c]]->other(c)]+1) break;
		if(cur[c] < 0) {
			int mh = INF, oh = h[c];
			for(int i = net[c].size()-1; i >= 0; i--)
				if(net[c][i]->cap(c) != 0) mh <?= h[net[c][i]->other(c)];
			if(mh == INF) h[c] = v;
			else { h[c] = mh+1; cur[c] = net[c].size()-1; }
			hn[oh]--; hn[h[c]]++; gapHeuristic(oh);
			if(c != s) c = pre[c];
		} else {
			int p = net[c][cur[c]]->other(c);
			prev[p] = net[c][cur[c]];
			pre[p] = c; c = p;
			if(c == t) {
				int ex = INF;
				for(; c != s; c = pre[c]) ex <?= prev[c]->cap(pre[c]);
				for(c = t; c != s; c = pre[c]) prev[c]->addFlow(pre[c], ex);
				flow += ex; c = s;
			}
		}
	}
	return flow;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -