hdoj 5137 How Many Maos Does the Guanxi Worth【最短路枚举+删边】
How Many Maos Does the Guanxi Worth
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 512000/512000 K (Java/Others)
Total Submission(s): 1027 Accepted Submission(s):
349
of means "relationship" or "contact". Guanxi can be based on friendship, but
also can be built on money. So Chinese often say "I don't have one mao (0.1 RMB)
guanxi with you." or "The guanxi between them is naked money guanxi." It is said
that the Chinese society is a guanxi society, so you can see guanxi plays a very
important role in many things.
Here is an example. In many cities in
China, the government prohibit the middle school entrance examinations in order
to relief studying burden of primary school students. Because there is no clear
and strict standard of entrance, someone may make their children enter good
middle schools through guanxis. Boss Liu wants to send his kid to a middle
school by guanxi this year. So he find out his guanxi net. Boss Liu's guanxi net
consists of N people including Boss Liu and the schoolmaster. In this net, two
persons who has a guanxi between them can help each other. Because Boss Liu is a
big money(In Chinese English, A "big money" means one who has a lot of money)
and has little friends, his guanxi net is a naked money guanxi net -- it means
that if there is a guanxi between A and B and A helps B, A must get paid.
Through his guanxi net, Boss Liu may ask A to help him, then A may ask B for
help, and then B may ask C for help ...... If the request finally reaches the
schoolmaster, Boss Liu's kid will be accepted by the middle school. Of course,
all helpers including the schoolmaster are paid by Boss Liu.
You hate
Boss Liu and you want to undermine Boss Liu's plan. All you can do is to
persuade ONE person in Boss Liu's guanxi net to reject any request. This person
can be any one, but can't be Boss Liu or the schoolmaster. If you can't make
Boss Liu fail, you want Boss Liu to spend as much money as possible. You should
figure out that after you have done your best, how much at least must Boss Liu
spend to get what he wants. Please note that if you do nothing, Boss Liu will
definitely succeed.
For each test
case:
The first line contains two integers N and M. N means that there
are N people in Boss Liu's guanxi net. They are numbered from 1 to N. Boss Liu
is No. 1 and the schoolmaster is No. N. M means that there are M guanxis in Boss
Liu's guanxi net. (3 <=N <= 30, 3 <= M <= 1000)
Then M lines
follow. Each line contains three integers A, B and C, meaning that there is a
guanxi between A and B, and if A asks B or B asks A for help, the helper will be
paid C RMB by Boss Liu.
The input ends with N = 0 and M = 0.
It's
guaranteed that Boss Liu's request can reach the schoolmaster if you do not try
to undermine his plan.
has to spend after you have done your best. If Boss Liu will fail to send his
kid to the middle school, print "Inf" instead.
#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<queue>
#define MAX 1010
#define INF 0x3f3f3f
using namespace std;
int n,m;
int low[MAX],map[MAX][MAX];
int vis[MAX];
void init()
{
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
map[i][j]=i==j?0:INF;
}
void getmap()
{
int i,j;
int a,b,c;
while(m--)
{
scanf("%d%d%d",&a,&b,&c);
if(map[a][b]>c)
map[a][b]=map[b][a]=c;
}
}
int dijkstra()
{
int i,j,next,min;
memset(vis,0,sizeof(vis));
for(i=1;i<=n;i++)
low[i]=map[1][i];
vis[1]=1;
for(i=2;i<=n;i++)
{
min=INF;
next=1;
for(j=1;j<=n;j++)
{
if(!vis[j]&&min>low[j])
{
next=j;
min=low[j];
}
}
vis[next]=1;
for(j=1;j<=n;j++)
{
if(!vis[j]&&low[j]>low[next]+map[next][j])
low[j]=low[next]+map[next][j];
}
}
return low[n];
}
int used[MAX][MAX];//记录被删边的权值
void solve()
{
int i,j;
int ans=dijkstra();
bool flag=false;
for(i=2;i<=n-1;i++)
{
for(j=1;j<=n;j++)
{
used[i][j]=used[j][i]=map[i][j];//将要删的边的权值记录下来
map[i][j]=map[j][i]=INF;//删边
}
if(dijkstra()==INF)//删边之后1到n不连通
{
flag=true;
break;
}
ans=max(dijkstra(),ans);//如果删边后任然联通,取最长路
for(j=1;j<=n;j++)//将这条边恢复,删除下一条边
map[i][j]=map[j][i]=used[i][j];
}
if(flag)
printf("Inf\n");
else
printf("%d\n",ans);
}
int main()
{
while(scanf("%d%d",&n,&m),n|m)
{
init();
getmap();
solve();
}
return 0;
}
hdoj 5137 How Many Maos Does the Guanxi Worth【最短路枚举+删边】的更多相关文章
- hdu 5137 How Many Maos Does the Guanxi Worth 最短路 spfa
How Many Maos Does the Guanxi Worth Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 512000/5 ...
- HDU 5137 How Many Maos Does the Guanxi Worth 最短路 dijkstra
How Many Maos Does the Guanxi Worth Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 512000/5 ...
- HDU 5137 How Many Maos Does the Guanxi Worth
How Many Maos Does the Guanxi Worth Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 512000/5120 ...
- (hdoj 5137 floyd)How Many Maos Does the Guanxi Worth
How Many Maos Does the Guanxi Worth Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 512000/5 ...
- HDU5137 How Many Maos Does the Guanxi Worth(枚举+dijkstra)
How Many Maos Does the Guanxi Worth Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 512000/5 ...
- How Many Maos Does the Guanxi Worth
How Many Maos Does the Guanxi Worth Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 512000/5 ...
- 杭电5137How Many Maos Does the Guanxi Worth
How Many Maos Does the Guanxi Worth Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 512000/5 ...
- ACM学习历程——HDU5137 How Many Maos Does the Guanxi Worth(14广州10题)(单源最短路)
Problem Description "Guanxi" is a very important word in Chinese. It kind of means &quo ...
- hdu5137 How Many Maos Does the Guanxi Worth(单源最短路径)
题目链接:pid=5137">点击打开链接 题目描写叙述:如今有一张关系网.网中有n个结点标号为1-n.有m个关系,每一个关系之间有一个权值.问从2-n-1中随意去掉一个结点之后,从1 ...
随机推荐
- wcf通道Channel
正文 客户端与服务进行交互的过程是通过通道进行交互的.客户端通过调用代理类执行相应的方法,通过通道编码,调用上下文,传输客户端的事务,管理可靠会话,对消息正文的加密,最后要执行的通道是传输通道就像我们 ...
- 设置用户sudo -s拥有root权限
开通普通用户的ROOT权限,上线了可以禁止用户使用root权限 修改配置文件 vi etc/sudoers 在 root ALL=(ALL) ALL那么你就在下边再加一条配置:hjd ALL=( ...
- php Static静态关键字
静态属性与方法可以在不实例化类的情况下调用,直接使用类名::方法名的方式进行调用.静态属性不允许对象使用->操作符调用. class Car { private static $speed = ...
- poco异步等待ActiveResult
#include "Poco/ActiveMethod.h"#include "Poco/ActiveResult.h"#include <utility ...
- C# 拷贝数组的几种方式
突然学到了,所以就放到博客上来共享一下,权当是学习日记吧. 首先说明一下,数组是引用类型的,所以注意不要在复制时复制了地址而没有复制数值哦! 其实在复制数组的时候,一定要用new在堆中开辟一块新的空间 ...
- [日语歌词] If
原唱:西野カナ (にしのカナ) 作词:西野カナ/GIORGIO 13 作曲:GIORGIO CANCEMI 1.单词表 仮名 漢字 ひ 日 あめ 雨 や 止 ちがい 違い とおり 通り じかん 時間 ...
- BestCoder Round #67 (div.2) N*M bulbs
问题描述 N*M个灯泡排成一片,也就是排成一个N*M的矩形,有些开着,有些关着,为了节约用电,你要关上所有灯,但是你又很懒. 刚好有个熊孩纸路过,他刚好要从左上角的灯泡走去右下角的灯泡,然后离开. 但 ...
- 转载“用USBOOT制作DOS启动盘”
使用软件: Usboot和MaxDOS_5.6s_U盘版. 由于我的U盘容量比较小,暂时只能做DOS启动功能,其它功能如Windows PE,等我以后测试成功后再补充说明. U盘是啥? 读音优盘,可以 ...
- POJ 2886 Who Gets the Most Candies? 线段树
题目: http://poj.org/problem?id=2886 左右转的果断晕,题目不难,关键是准确的转啊转.因为题目要求输出约数个数最多的数,所以预处理[1,500000]的约数的个数就行了. ...
- Java多线程初学者指南(9):为什么要进行数据同步
Java中的变量分为两类:局部变量和类变量.局部变量是指在方法内定义的变量,如在run方法中定义的变量.对于这些变量来说,并不存在线程之间共享的问题.因此,它们不需要进行数据同步.类变量是在类中定义的 ...