题目链接:https://ac.nowcoder.com/acm/contest/993/J/
时间限制:C/C++ 1秒,其他语言2秒
空间限制:C/C++ 32768K,其他语言65536K
64bit IO Format: %lld
题目描述
Farmer John has decided to reward his cows for their hard work by taking them on a tour of the big city! The cows must decide how best to spend their free time.
Fortunately, they have a detailed city map showing the L (2 ≤ L ≤ 1000) major landmarks (conveniently numbered 1.. L) and the P (2 ≤ P ≤ 5000) unidirectional cow paths that join them. Farmer John will drive the cows to a starting landmark of their choice, from which they will walk along the cow paths to a series of other landmarks, ending back at their starting landmark where Farmer John will pick them up and take them back to the farm. Because space in the city is at a premium, the cow paths are very narrow and so travel along each cow path is only allowed in one fixed direction.
While the cows may spend as much time as they like in the city, they do tend to get bored easily. Visiting each new landmark is fun, but walking between them takes time. The cows know the exact fun values Fi (1 ≤ Fi ≤ 1000) for each landmark i.
The cows also know about the cowpaths. Cowpath i connects landmark L1iL1i to L2iL2i (in the direction L1iL1i -> L2iL2i ) and requires time Ti (1 ≤ Ti ≤ 1000) to traverse.
In order to have the best possible day off, the cows want to maximize the average fun value per unit time of their trip. Of course, the landmarks are only fun the first time they are visited; the cows may pass through the landmark more than once, but they do not perceive its fun value again. Furthermore, Farmer John is making the cows visit at least two landmarks, so that they get some exercise during their day off.
Help the cows find the maximum fun value per unit time that they can achieve.
输入描述
* Line 1: Two space-separated integers: L and P
* Lines 2..L+1: Line i+1 contains a single one integer: Fi
* Lines L+2..L+P+1: Line L+i+1 describes cow path i with three space-separated integers: L1iL1i , L2iL2i , and Ti
输出描述
* Line 1: A single number given to two decimal places (do not perform explicit rounding), the maximum possible average fun per unit time, or 0 if the cows cannot plan any trip at all in accordance with the above rules.
输入
5 7
30
10
10
5
10
1 2 3
2 3 2
3 4 5
3 5 2
4 5 5
5 1 3
5 2 2
输出
6.00
说明
The trip 1 -> 2 -> 3 -> 5 -> 1 has a total fun value of 60 and a length of 10 units for an average fun per unit time of 6. The trip 2 -> 3 -> 5 -> 2 only has an average fun per unit time of 30/6 = 5, and any trip involving landmark 4 has an average fun per unit time of less than 4.
解题思路
题意:给了一个有向图,每个点有点权,每条边有边权。求所有环当中,点权和除以边权和最大是多少。
思路:二分答案。对于一个二分的答案mid,分数规划的分子是点权vali和,分母是边权ei和,则分数规划的函数是sigma(vali-mid*ei)。环上的点数和边数肯定相等,于是可以在更新边权的同时顺便更新点权,于是只要判断是否存在一个正环就可以。正向环不是很好求。不过,负环可以用Spfa判断。这样,我们就可以先二分答案,每次再通过Spfa判负环。判的时候,把点权取负,边权与mid的乘积取整。(把分数规划函数vali-mid*ei取反).
Accepted Code:
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1005;
const int MAXM = 5005;
const int inf = 0x3f3f3f3f;
const double eps = 1e-8;
int n, m, cnt, f[MAXN], val[MAXN], inq[MAXN];
double dis[MAXN];
bool vis[MAXN];
struct edge {
int u, v, w;
} e[MAXM << 1];
void Union(int u, int v, int w) {
e[++cnt] = (edge){f[u], v, w};
f[u] = cnt;
}
bool Spfa(double L) {
queue <int> Q;
Q.push(1);
for (int i = 1; i <= n; i++)
dis[i] = inf;
memset(inq, 0, sizeof(inq));
//memset(dis, 0x3f, sizeof(dis));
memset(vis, false, sizeof(vis));
dis[1] = 0;
vis[1] = true;
while (!Q.empty()) {
int u = Q.front();
Q.pop();
vis[u] = false;
for (int i = f[u]; i; i = e[i].u) {
int v = e[i].v;
if (dis[v] > dis[u] - (val[u] - e[i].w * L)) {
dis[v] = dis[u] - (val[u] - e[i].w * L);
if (!vis[v]) {
Q.push(v);
vis[v] = true;
if (++inq[v] > n)
return true;
}
}
}
}
return false;
}
void init() {
cnt = 0;
memset(f, 0, sizeof(f));
}
int main() {
init();
int u, v, w;
scanf("%d%d", &n, &m);
for (int i = 1; i <= n; i++)
scanf("%d", &val[i]);
for (int i = 1; i <= m; i++) {
scanf("%d%d%d", &u, &v, &w);
Union(u, v, w);
}
double l = 0, r = 1e4;
while (r - l >= eps) {
double mid = (l + r) / 2;
if (Spfa(mid))
l = mid + eps;
else r = mid - eps;
}
printf("%.2f\n", r);
return 0;
}