POJ3621Sightseeing Cows[01分数规划 spfa(dfs)负环 ]
| Time Limit: 1000MS | Memory Limit: 65536K | |
| Total Submissions: 9703 | Accepted: 3299 |
Description
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 L1i to L2i (in the direction L1i -> L2i ) 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.
Input
* 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: L1i , L2i , and Ti
Output
* 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.
Sample Input
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
Sample Output
6.00
Source
转载一段题解:
http://www.cnblogs.com/wally/p/3228171.html
题目的意思是:求一个环的{点权和}除以{边权和},使得那个环在所有环中{点权和}除以{边权和}最大。
令在一个环里,点权为v[i],对应的边权为e[i],
即要求:∑(i=,n)v[i]/∑(i=,n)e[i]最大的环(n为环的点数),
设题目答案为ans,
即对于所有的环都有 ∑(i=,n)(v[i])/∑(i=,n)(e[i])<=ans
变形得ans* ∑(i=,n)(e[i])>=∑(i=,n)(v[i])
再得 ∑(i=,n)(ans*e[i]-v[i]) >=
稍分析一下,就有:
当k<ans时,就存在至少一个环∑(i=,n)(k*e[i]-v[i])<,即有负权回路(边权为k*e[i]-v[i]);
当k>=ans时,就对于所有的环∑(i=,n)(k*e[i]-v[i])>=,即没有负权回路。
然后我们就可以使新的边权为k*e[i]-v[i],用spfa来判断付权回路,二分ans。
再一段
http://www.cnblogs.com/proverbs/archive/2013/01/09/2853741.html
01分数规划,简单构造,将点权转移到边权上~因为一个环上的点和边的数量是相等的~
设i,j之间初始边权为w[i][j],修改后的边权为g[i][j],则g[i][j]=w[i][j]*mid+val[i]
spfa判负环即可~
列式转换一下,所有的都满足
∑(i=1,n)(ans*e[i]-v[i]) >=0
如果有的不满足,就更改ans使他满足,用实数二分的方法 用spfa判负环,有负环就说明可以选出一个n的集合使上述条件不满足
因为不需要最短路所以把初始化所有点加进去d=0
还有一种很神的dfs写法,负环超级快;从每个点dfs-spfa看看有没有回到自己 bfs:
//
// main.cpp
// poj3621
//
// Created by Candy on 9/13/16.
// Copyright ? 2016 Candy. All rights reserved.
// #include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <cstring>
using namespace std;
const int N=,M=; int n,m,a,b;
double l,r,mid,f[N],c;
struct edge{
int v,ne;
double w;
}e[M];
int h[N],cnt=;
inline void ins(int u,int v,double w){
cnt++;
e[cnt].v=v;e[cnt].w=w;e[cnt].ne=h[u];h[u]=cnt;
} int inq[N],num[N];
double d[N];
bool spfanc(double p){
queue<int> q;
memset(num,,sizeof(num));
for(int i=;i<=n;i++) {d[i]=;inq[i]=;q.push(i);num[i]++;} while(!q.empty()){
int u=q.front();q.pop();inq[u]=;
for(int i=h[u];i;i=e[i].ne){
int v=e[i].v; double w=e[i].w*p-f[u];
if(d[v]>d[u]+w){
d[v]=d[u]+w;
if(!inq[v]){q.push(v);inq[v]=;if(++num[v]>n) return true;}
}
}
}
return false;
}
int main(int argc, const char * argv[]) {
while(cin>>n>>m){
cnt=;
memset(h,,sizeof(h));
for(int i=;i<=n;i++) scanf("%lf",&f[i]);
for(int i=;i<=m;i++){scanf("%d%d%lf",&a,&b,&c);ins(a,b,c);} l=,r=;
while(r-l>1e-){
mid=(l+r)/;//printf("%.2f\n",mid);
if(spfanc(mid)) l=mid;
else r=mid;
}
printf("%.2f\n",mid);
}
return ;
}
dfs:
//
// main.cpp
// poj3621
//
// Created by Candy on 9/13/16.
// Copyright ? 2016 Candy. All rights reserved.
// #include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <cstring>
using namespace std;
const int N=,M=; int n,m,a,b;
double l,r,mid,f[N],c;
struct edge{
int v,ne;
double w;
}e[M];
int h[N],cnt=;
inline void ins(int u,int v,double w){
cnt++;
e[cnt].v=v;e[cnt].w=w;e[cnt].ne=h[u];h[u]=cnt;
} int vis[N],st;
double d[N];
inline bool dfs(int u,double p){
vis[u]=st;
for(int i=h[u];i;i=e[i].ne){
int v=e[i].v; double w=e[i].w*p-f[u];
if(d[v]>d[u]+w){
d[v]=d[u]+w;
if(vis[v]==vis[u]) return true;
else if(dfs(v,p)) return true;
}
}
vis[u]=;
return false;
}
bool nc(double p){
memset(vis,,sizeof(vis));
//memset(d,0,sizeof(d));
for(st=;st<=n;st++)
if(dfs(st,p)) return true; return false;
}
int main(int argc, const char * argv[]) {
while(cin>>n>>m){
cnt=;
memset(h,,sizeof(h));
for(int i=;i<=n;i++) scanf("%lf",&f[i]);
for(int i=;i<=m;i++){scanf("%d%d%lf",&a,&b,&c);ins(a,b,c);} l=,r=;
while(r-l>1e-){
mid=(l+r)/;//printf("%.2f\n",mid);
if(nc(mid)) l=mid;
else r=mid;
}
printf("%.2f\n",mid);
}
return ;
}
POJ3621Sightseeing Cows[01分数规划 spfa(dfs)负环 ]的更多相关文章
- 2018.09.24 bzoj1486: [HNOI2009]最小圈(01分数规划+spfa判负环)
传送门 答案只保留了6位小数WA了两次233. 这就是一个简单的01分数规划. 直接二分答案,根据图中有没有负环存在进行调整. 注意二分边界. 另外dfs版spfa判负环真心快很多. 代码: #inc ...
- bzoj3597[Scoi2014]方伯伯运椰子 01分数规划+spfa判负环
3597: [Scoi2014]方伯伯运椰子 Time Limit: 30 Sec Memory Limit: 64 MBSubmit: 594 Solved: 360[Submit][Statu ...
- POJ 3621 Sightseeing Cows 【01分数规划+spfa判正环】
题目链接:http://poj.org/problem?id=3621 Sightseeing Cows Time Limit: 1000MS Memory Limit: 65536K Total ...
- [HNOI2009]最小圈 分数规划 spfa判负环
[HNOI2009]最小圈 分数规划 spfa判负环 题面 思路难,代码简单. 题目求圈上最小平均值,问题可看为一个0/1规划问题,每个边有\(a[i],b[i]\)两个属性,\(a[i]=w(u,v ...
- [P1768]天路(分数规划+SPFA判负环)
题目描述 “那是一条神奇的天路诶~,把第一个神犇送上天堂~”,XDM先生唱着这首“亲切”的歌曲,一道猥琐题目的灵感在脑中出现了. 和C_SUNSHINE大神商量后,这道猥琐的题目终于出现在本次试题上了 ...
- bzoj 1690: [Usaco2007 Dec]奶牛的旅行——分数规划+spfa判负环
Description 作为对奶牛们辛勤工作的回报,Farmer John决定带她们去附近的大城市玩一天.旅行的前夜,奶牛们在兴奋地讨论如何最好地享受这难得的闲暇. 很幸运地,奶牛们找到了一张详细的城 ...
- bzoj1690:[Usaco2007 Dec]奶牛的旅行(分数规划+spfa判负环)
PS:此题数组名皆引用:戳我 题目大意:有n个点m条有向边的图,边上有花费,点上有收益,点可以多次经过,但是收益不叠加,边也可以多次经过,但是费用叠加.求一个环使得收益和/花费和最大,输出这个比值. ...
- [HNOI2009]最小圈(分数规划+SPFA判负环)
题解:求环长比环边个数的最小值,即求min{Σw[i]/|S|},其中i∈S.这题一眼二分,然后可以把边的个数进行转化,假设存在Σw[i]/|S|<=k,则Σw[i]-k|S|<=0,即Σ ...
- 2018.09.09 poj2949Word Rings(01分数规划+spfa判环)
传送门 这题要先巧妙的转化一下. 对于每个字符串,我们把头尾的两个小字符串对应的点连边,边权是这个字符串的长度. 这样最多会出现26*26个点. 这个时候就只用求出边权和跟边数的最大比值了. 这个显然 ...
随机推荐
- 众人口中的JAVASCRIPT
目前所说的JAVASCRIPT=ECMAscript+DOM+BOM DOM全称:Document Object Model,造作网页内容的标准. BOM全称:Browse Object Model, ...
- AloneJs —— 简洁高效的JavaScript UI库
以前做项目时用了一些第三方的JS UI库,项目比较low的时候用还行,一旦项目要求比较高,特别是交互比较复杂时,某些第三方UI库就显得无能为力,用起来也不顺手,改也不好改,所以我就自己基于jQuery ...
- javascript 对象初探 (四)--- 内建对象之旅之Array
我们不要去纠结神马是内建对象,神马是內建构造器.到后来你们便会发现其实她们都是对象. Array()是一个构建数组的內建构造器函数: var arr = new Array(); 与下面的是等效的: ...
- sharepoint项目遇到的WebDAV和HTTP PUT的安全隐患解决办法
最近一个项目,客户进行了安全检测,检测出如下安全隐患,其实这些隐患全是IIS设置的事情 许多人误认为SharePoint是在使用由IIS提供的WebDAV功能. 实际上, SharePoint在S ...
- 给栅格数据添加RasterFunction--自定义渲染方法
<script type="text/javascript"> /** dojo.require("esri.map"); dojo.require ...
- 给view添加类似系统上拉快捷菜单的手势
iOS7以后从屏幕最下方上划会滑出快捷菜单,感觉这个效果不错,就想做个类似的效果,这个东西技术含量不高,每次都写一遍的话就太浪费时间了,所以就把它写成了一个分类,用起来会方便一点. demo地址:ht ...
- Android忘记密码功能实现
连续好几天学习都没有什么进展,然而在今天这个烂漫的日子.突然有了学习的动力.想起来前几日老师给布置的android忘记密码的功能实现.今天也有了想法.就是按照老师的建议,简单的回答一个问题,实现此功能 ...
- 操作系统开发系列—4.LDT
一直以来,我们把所有的段描述符都放在GDT中,而不管它属于内核还是用户程序,为了有效地在任务之间实施隔离,处理器建议每个任务都应当具有自己的描述符表,称为局部描述符表LDT,并且把专属于自己的那些段放 ...
- OC NSFileManager(文件路径操作)
OC NSFileManager(文件路径操作) 初始化 NSFileManager * fm = [NSFileManager defaultManager]; 获取当前目录 [fm current ...
- SQL Server日期时间格式转换字符串
在SQL Server数据库中,SQL Server日期时间格式转换字符串可以改变SQL Server日期和时间的格式,是每个SQL数据库用户都应该掌握的.本文我们主要就介绍一下SQL Server日 ...