codeforces 653D D. Delivery Bears(二分+网络流)
题目链接:
2 seconds
256 megabytes
standard input
standard output
Niwel is a little golden bear. As everyone knows, bears live in forests, but Niwel got tired of seeing all the trees so he decided to move to the city.
In the city, Niwel took on a job managing bears to deliver goods. The city that he lives in can be represented as a directed graph with nnodes and m edges. Each edge has a weight capacity. A delivery consists of a bear carrying weights with their bear hands on a simple path from node 1 to node n. The total weight that travels across a particular edge must not exceed the weight capacity of that edge.
Niwel has exactly x bears. In the interest of fairness, no bear can rest, and the weight that each bear carries must be exactly the same. However, each bear may take different paths if they like.
Niwel would like to determine, what is the maximum amount of weight he can deliver (it's the sum of weights carried by bears). Find the maximum weight.
The first line contains three integers n, m and x (2 ≤ n ≤ 50, 1 ≤ m ≤ 500, 1 ≤ x ≤ 100 000) — the number of nodes, the number of directed edges and the number of bears, respectively.
Each of the following m lines contains three integers ai, bi and ci (1 ≤ ai, bi ≤ n, ai ≠ bi, 1 ≤ ci ≤ 1 000 000). This represents a directed edge from node ai to bi with weight capacity ci. There are no self loops and no multiple edges from one city to the other city. More formally, for each i and j that i ≠ j it's guaranteed that ai ≠ aj or bi ≠ bj. It is also guaranteed that there is at least one path from node 1 to node n.
Print one real value on a single line — the maximum amount of weight Niwel can deliver if he uses exactly x bears. Your answer will be considered correct if its absolute or relative error does not exceed 10 - 6.
Namely: let's assume that your answer is a, and the answer of the jury is b. The checker program will consider your answer correct if 
.
4 4 3
1 2 2
2 4 1
1 3 1
3 4 2
1.5000000000
5 11 23
1 2 3
2 3 4
3 4 5
4 5 6
1 3 4
2 4 5
3 5 6
1 4 2
2 5 3
1 5 2
3 2 30
10.2222222222 题意: 给一个有向图,有x子熊,每只熊背的重量相同,现在且每条边通过的重量不能超过其容量,问熊背的总重量最大是多少; 思路: 二分每个熊背的重量,最后再乘熊的个数就是答案,看这个熊背的重量符合不符合要求时就跑一遍最大流,在寻找增广路径时限制这条流的流量最小值,最后求的每个熊背这么多重量这个网络能允许通过多少只熊,然后与x比较就可以找到答案了,当时有一个最简单的图,他的答案是1,但我一开始输出小数点点后10,精度不够,没过,想想答案最小是1,所以输出了小数点后5位就过了;觉得要是有个答案是1.多的可能就挂了;
(直接二分答案就好了,可以避免过大的误差,代码改成了直接二分答案的代码了) AC代码:
//#include <bits/stdc++.h>
#include <vector>
#include <iostream>
#include <queue>
#include <cmath>
#include <map>
#include <cstring>
#include <algorithm>
#include <cstdio> using namespace std;
#define Riep(n) for(int i=1;i<=n;i++)
#define Riop(n) for(int i=0;i<n;i++)
#define Rjep(n) for(int j=1;j<=n;j++)
#define Rjop(n) for(int j=0;j<n;j++)
#define mst(ss,b) memset(ss,b,sizeof(ss));
typedef long long LL;
template<class T> void read(T&num) {
char CH; bool F=false;
for(CH=getchar();CH<''||CH>'';F= CH=='-',CH=getchar());
for(num=;CH>=''&&CH<='';num=num*+CH-'',CH=getchar());
F && (num=-num);
}
int stk[], tp;
template<class T> inline void print(T p) {
if(!p) { puts(""); return; }
while(p) stk[++ tp] = p%, p/=;
while(tp) putchar(stk[tp--] + '');
putchar('\n');
} const LL mod=1e9+;
const double PI=acos(-1.0);
const LL inf=1e14;
const int N=2e5+; int n,m,k,path[];
double cap[][],temp[][],flow[];
queue<int>qu;
double bfs(double x)
{
while(!qu.empty())qu.pop();
mst(path,-);
path[]=;
flow[]=;
qu.push();
while(!qu.empty())
{
int fr=qu.front();
qu.pop();
for(int i=;i<=n;i++)
{
if(i!=-&&temp[fr][i]>=x&&path[i]==-)
{
path[i]=fr;
flow[i]=min(flow[fr],temp[fr][i]);
qu.push(i);
}
}
}
if(path[n]==-)return -;
return flow[n];
} int check(double x)
{
for(int i=;i<=n;i++)
for(int j=;j<=n;j++)
temp[i][j]=cap[i][j];
int sum=,now,pre;
while()
{
double s=bfs(x);
if(s<)break;
int num=floor(s/x);
sum+=num;
double f=num*x;
now=n;
while(now!=)
{
pre=path[now];
temp[pre][now]-=f;
temp[now][pre]+=f;
now=pre;
}
}
if(sum>=k)return ;
return ;
} int main()
{
read(n);read(m);read(k);
int u,v;
double ca;
Riep(m)
{
read(u),read(v),read(ca);
cap[u][v]=ca;
}
double l=,r=*(k*1.0);
while(r-l>1e-)
{
double mid=(l+r)/;
if(check(mid/(k*1.0)))l=mid;
else r=mid;
}
printf("%.10lf\n",r);
return ;
}
codeforces 653D D. Delivery Bears(二分+网络流)的更多相关文章
- IndiaHacks 2016 - Online Edition (Div. 1 + Div. 2) D. Delivery Bears 二分+网络流
		
D. Delivery Bears 题目连接: http://www.codeforces.com/contest/653/problem/D Description Niwel is a littl ...
 - codeforces 589F. Gourmet and Banquet  二分+网络流
		
题目链接 给你n种菜, 每一种可以开始吃的时间不一样, 结束的时间也不一样. 求每种菜吃的时间都相同的最大的时间.时间的范围是0-10000. 看到这个题明显可以想到网络流, 但是时间的范围明显不允许 ...
 - hihoCoder 1389 Sewage Treatment 【二分+网络流+优化】 (ACM-ICPC国际大学生程序设计竞赛北京赛区(2016)网络赛)
		
#1389 : Sewage Treatment 时间限制:2000ms 单点时限:2000ms 内存限制:256MB 描述 After years of suffering, people coul ...
 - POJ 2455 Secret Milking Machine(搜索-二分,网络流-最大流)
		
Secret Milking Machine Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 9658 Accepted: ...
 - BZOJ_3993_[SDOI2015]星际战争_二分+网络流
		
BZOJ_3993_[SDOI2015]星际战争_二分+网络流 Description 3333年,在银河系的某星球上,X军团和Y军团正在激烈地作战.在战斗的某一阶段,Y军团一共派遣了N个巨型机器人进 ...
 - 【bzoj3130】[Sdoi2013]费用流  二分+网络流最大流
		
题目描述 Alice和Bob做游戏,给出一张有向图表示运输网络,Alice先给Bob一种最大流方案,然后Bob在所有边上分配总和等于P的非负费用.Alice希望总费用尽量小,而Bob希望总费用尽量大. ...
 - 【bzoj1822】[JSOI2010]Frozen Nova 冷冻波  计算几何+二分+网络流最大流
		
题目描述 WJJ喜欢“魔兽争霸”这个游戏.在游戏中,巫妖是一种强大的英雄,它的技能Frozen Nova每次可以杀死一个小精灵.我们认为,巫妖和小精灵都可以看成是平面上的点. 当巫妖和小精灵之间的直线 ...
 - 【bzoj1733】[Usaco2005 feb]Secret Milking Machine 神秘的挤奶机  二分+网络流最大流
		
题目描述 Farmer John is constructing a new milking machine and wishes to keep it secret as long as possi ...
 - 【bzoj1532】[POI2005]Kos-Dicing  二分+网络流最大流
		
题目描述 Dicing 是一个两人玩的游戏,这个游戏在Byteotia非常流行. 甚至人们专门成立了这个游戏的一个俱乐部. 俱乐部的人时常在一起玩这个游戏然后评选出玩得最好的人.现在有一个非常不走运的 ...
 
随机推荐
- Servlet容器的启动过程
			
[http://book.51cto.com/art/201408/448854.htm] Tomcat的启动逻辑是基于观察者模式设计的,所有的容器都会继承Lifecycle接口,它管理着容器的整 ...
 - redis的文件事件处理器
			
前言 C10K problem提出了一个问题,如果1w个客户端连接到server上,间歇性的发送消息,有哪些好的方案? 其中的一种方案是,每个线程处理多个客户端,使用异步I/O和就绪通 ...
 - Hadoop集群基准测试
			
hadoop jar ./share/hadoop/mapreduce/hadoop-mapreduce-client-jobclient-2.2.0-tests.jar TestDFSIO -wri ...
 - Android与.Net交互模拟用户屏幕操作添加APN和网络4G/3G切换
			
前几天接到一个需求,我们的客户需要对手机网络接入点进行可用性测试,简单点说就是需要实现Android上的APN配置的添加,APN切换网络模式4G/3G/2G切换,我要调研下写个demo. 因为是要实现 ...
 - Junit 测试断言说明
			
Assert.assertEquals("发生错误时报告消息","预期值","生产值"); Assert.assertEquals(&quo ...
 - 六分钟学会创建Oracle表空间的步骤
			
经过长时间学习创建Oracle表空间,于是和大家分享一下,看完本文你肯定有不少收获,希望本文能教会你更多东西. 1.先查询空闲空间 select tablespace_name,file_id,blo ...
 - Delphi thread exception mechanism
			
http://www.techques.com/question/1-3627743/Delphi-thread-exception-mechanism i have a dilema on how ...
 - Windows Self Signed Driver
			
In particular, Microsoft® instituted a device driver certification process for its Windows® desktop ...
 - C++学习笔记之运算符重载
			
一.运算符重载基本知识 在前面的一篇博文 C++学习笔记之模板(1)——从函数重载到函数模板 中,介绍了函数重载的概念,定义及用法,函数重载(也被称之为函数多态)就是使用户能够定义多个名称相同但特征标 ...
 - Codeforces Round #188 (Div. 2) A. Even Odds 水题
			
A. Even Odds Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/318/problem/ ...