【BZOJ1070】【SCOI2007】修车

【题目链接】

【思路要点】

  • 补档博客,无题解。

【代码】

#include<bits/stdc++.h>
using namespace std;
#define MAXN	105
#define MAXP	1005
#define MAXQ	1000005
#define INF	1e9
template <typename T> void read(T &x) {
	x = 0; int f = 1;
	char c = getchar();
	for (; !isdigit(c); c = getchar()) if (c == '-') f = -f;
	for (; isdigit(c); c = getchar()) x = x * 10 + c - '0';
	x *= f;
}
struct edge {int dest, flow, cost; unsigned home; };
vector <edge> a[MAXP];
int Cost[MAXN][MAXN];
int tot, point[MAXN][MAXN];
int s, t, flow, cost, len;
int dist[MAXP], path[MAXP];
unsigned home[MAXP];
bool spfa() {
	static int q[MAXQ];
	static bool inq[MAXP];
	int l = 0, r = 0;
	q[0] = s; dist[s] = 0;
	inq[s] = true;
	while (l <= r) {
		int tmp = q[l++];
		inq[tmp] = false;
		for (unsigned i = 0; i < a[tmp].size(); i++)
			if (a[tmp][i].flow != 0 && dist[tmp] + a[tmp][i].cost < dist[a[tmp][i].dest]) {
				dist[a[tmp][i].dest] = dist[tmp] + a[tmp][i].cost;
				path[a[tmp][i].dest] = tmp;
				home[a[tmp][i].dest] = i;
				if (!inq[a[tmp][i].dest]) {
					inq[a[tmp][i].dest] = true;
					q[++r] = a[tmp][i].dest;
				}
			}
	}
	len = dist[t];
	for (int i = 0; i <= r; i++)
		dist[q[i]] = INF;
	return len != INF;
}
void flow_path() {
	int p = t, ans = INF;
	while (p != s) {
		ans = min(ans, a[path[p]][home[p]].flow);
		p = path[p];
	}
	flow += ans; cost += ans * len; p = t;
	while (p != s) {
		a[path[p]][home[p]].flow -= ans;
		a[p][a[path[p]][home[p]].home].flow += ans;
		p = path[p];
	}
}
void addedge(int s, int t, int flow, int cost) {
	a[s].push_back((edge) {t, flow, cost, a[t].size()});
	a[t].push_back((edge) {s, 0, -cost, a[s].size() - 1});
}
int main() {
	int n, m; read(m), read(n);
	for (int i = 1; i <= n; i++)
	for (int j = 1; j <= m; j++)
		read(Cost[i][j]);
	s = 0; tot = n;
	for (int i = 1; i <= n; i++)
	for (int j = 1; j <= m; j++) {
		point[i][j] = ++tot;
		addedge(s, tot, 1, 0);
	}
	for (int i = 1; i <= n; i++)
	for (int j = 1; j <= m; j++)
	for (int k = 1; k <= n; k++)
		addedge(point[i][j], k, 1, i * Cost[k][j]);
	t = ++tot;
	for (int i = 1; i <= n; i++)
		addedge(i, t, 1, 0);
	for (int i = 0; i <= t; i++)
		dist[i] = INF;
	while (spfa())
		flow_path();
	printf("%.2lf\n", (double) cost / n);
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值