最短路
文章平均质量分 80
Lionel_D
这个作者很懒,什么都没留下…
展开
-
hdu 2066 一个人的旅行 优化的Floyd算法解决
虽然草儿是个路痴(就是在杭电待了一年多,居然还会在校园里迷路的人,汗~),但是草儿仍然很喜欢旅行,因为在旅途中 会遇见很多人(白马王子,^0^),很多事,还能丰富自己的阅历,还可以看美丽的风景……草儿想去很多地方,她想要去东京铁塔看夜景,去威尼斯看电影,去阳明山上看海芋,去纽约纯粹看雪景,去巴黎喝咖啡写信,去北京探望孟姜女……眼看寒假就快到了,这么一大段时间,可不能浪费啊,一定要给自己好好的放个假,可是也不能荒废了训练啊,所以草儿决定在要在最短的时间去一个自己想去的地方!因为草儿的家在一个小镇上,没有火车经原创 2015-02-16 13:07:10 · 1460 阅读 · 0 评论 -
hdu 2680 Choose the best route 大年三十的首A 赤裸裸的Dijkstra 做这题需要一个小技巧
Choose the best routeTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 8063 Accepted Submission(s): 2655Problem DescriptionOne day原创 2015-02-18 16:03:17 · 1077 阅读 · 0 评论 -
hdu 3790 最短路径&最低费用 题目不难,但要注意重边
最短路径问题Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 24838 Accepted Submission(s): 7408Problem Description给你n个点,m条无向边,每条边都有长度d和花原创 2017-02-24 00:35:05 · 1663 阅读 · 0 评论 -
hdu 2962 Trucking 最短路+二分。。Dijkstra+SPFA两种算法实现。
Problem DescriptionA certain local trucking company would like to transport some goods on a cargo truck from one place to another. It is desirable to transport as much goods as possible each trip. Unfortunately, one cannot always use the roads in the shor原创 2015-04-04 18:03:04 · 803 阅读 · 0 评论 -
hdu 1546 Idiomatic Phrases Game 最短路
Problem DescriptionTom is playing a game called Idiomatic Phrases Game. An idiom consists of several Chinese characters and has a certain meaning. This game will give Tom two idioms. He should build a list of idioms and the list starts and ends with the t原创 2015-03-30 21:44:22 · 746 阅读 · 0 评论 -
hdu 1548 A strange lift Dijkstra+SPFA算法AC
Problem DescriptionThere is a strange lift.The lift can stop can at every floor as you want, and there is a number Ki(0 <= Ki <= N) on every floor.The lift have just two buttons: up and down.When you at floor i,if you press the button "UP" , you will go u原创 2015-03-28 15:31:00 · 894 阅读 · 0 评论 -
hdu 1690 Bus System 最短路 Floyd算法。。INF一定要很大很大。。。数据类型用long long。
Because of the huge population of China, public transportation is very important. Bus is an important transportation method in traditional public transportation system. And it’s still playing an important role even now.The bus system of City X is quite st原创 2015-03-28 09:45:02 · 939 阅读 · 0 评论 -
hdu 1596 find the safest road 最短路 FLoyd算法
Problem DescriptionXX星球有很多城市,每个城市之间有一条或多条飞行通道,但是并不是所有的路都是很安全的,每一条路有一个安全系数s,s是在 0 和 1 间的实数(包括0,1),一条从u 到 v 的通道P 的安全度为Safe(P) = s(e1)*s(e2)…*s(ek) e1,e2,ek是P 上的边 ,现在8600 想出去旅游,面对这这么多的路,他想找一条最安全的路。但是8600 的数学不好,想请你帮忙 ^_^ Input输入包括多个测试实例,每个实例包括:第一行:n。n表示城原创 2015-03-27 10:57:46 · 935 阅读 · 0 评论 -
hdu 2433 Travel 最短路 dijkstra算法。
Problem Description One day, Tom traveled to a country named BGM. BGM is a small country, but there are N (N <= 100) towns in it. Each town products one kind of food, the food will be transported to all the towns. In addition, the trucks will always原创 2015-03-27 15:42:21 · 1439 阅读 · 0 评论 -
poj 1062 昂贵的聘礼 Dijkstra算法,中等难度,,,内有测试数据,一道让我累觉不爱的题目
昂贵的聘礼Time Limit: 1000MS Memory Limit: 10000KTotal Submissions: 38474 Accepted: 11132Description年轻的探险家来到了一个印第安部落里。在那里他和酋长的女儿相爱了,于是便向酋长去求亲。酋长要他用10000个金币作为聘礼才答应把女儿嫁给原创 2015-02-21 16:15:17 · 3610 阅读 · 2 评论 -
poj 1502 MPI Maelstrom Dijkstra算法的简单运用 ,呵呵,,我估计有很多人都没看懂什么意思,我也看了很久
BIT has recently taken delivery of their new supercomputer, a 32 processor Apollo Odyssey distributed shared memory machine with a hierarchical communication subsystem. Valentine McKee's research advisor, Jack Swigert, has asked her to benchmark the new sy原创 2015-02-16 20:25:16 · 1347 阅读 · 0 评论 -
hdu 1869 六度分离 Floyd算法
六度分离Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4944 Accepted Submission(s): 1986Problem Description1967年,美国著名的社会学家斯坦利·米尔格兰姆提原创 2015-02-18 00:26:52 · 1573 阅读 · 0 评论 -
hdu 1625 Numbering Paths 最短路的变形,使用Floyd 外加判环
Problem DescriptionProblems that process input and generate a simple ``yes'' or ``no'' answer are called decision problems. One class of decision problems, the NP-complete problems, are not amenable to general efficient solutions. Other problems may be si原创 2015-02-17 16:04:29 · 1048 阅读 · 0 评论 -
hdu 2112 HDU Today Dijkstra算法应用+set集合判重+二分查找。不错的一题
Problem Description经过锦囊相助,海东集团终于度过了危机,从此,HDU的发展就一直顺风顺水,到了2050年,集团已经相当规模了,据说进入了钱江肉丝经济开发区500强。这时候,XHD夫妇也退居了二线,并在风景秀美的诸暨市浬浦镇陶姚村买了个房子,开始安度晚年了。这样住了一段时间,徐总对当地的交通还是不太了解。有时很郁闷,想去一个地方又不知道应该乘什么公交车,在什么地方转车,在什么地方下车(其实徐总自己有车,却一定要与民同乐,这就是徐总的性格)。徐总经常会问蹩脚的英文问路:“Can you原创 2015-02-16 22:03:16 · 814 阅读 · 0 评论 -
蓝桥杯 算法提高 道路和航路 满分AC ,SPFA算法的SLF优化,测试数据还是比较水的,貌似没有重边
农夫约翰正在针对一个新区域的牛奶配送合同进行研究。他打算分发牛奶到T个城镇(标号为1..T),这些城镇通过R条标号为(1..R)的道路和P条标号为(1..P)的航路相连。每一条公路i或者航路i表示成连接城镇Ai(1<=A_i<=T)和Bi(1<=Bi<=T)代价为Ci。每一条公路,Ci的范围为0<=Ci<=10,000;由于奇怪的运营策略,每一条航路的Ci可能为负的,也就是-10,000<=Ci<=10,000。每一条公路都是双向的,正向和反向的花费是一样的,都是非负的。每一条航路都根据输入的A原创 2015-02-21 17:46:02 · 2417 阅读 · 0 评论 -
hdu 1874 畅通工程续 两种算法AC Floyd+Bellman-Ford算法 又是一波水题~~
Problem Description某省自从实行了很多年的畅通工程计划后,终于修建了很多路。不过路多了也不好,每次要从一个城镇到另一个城镇时,都有许多种道路方案可以选择,而某些方案要比另一些方案行走的距离要短很多。这让行人很困扰。现在,已知起点和终点,请你计算出要从起点到终点,最短需要行走多少距离。 Input本题目包含多组数据,请处理到文件结束。每组数据第一行包含两个正整数N和M(0<N<200,0<M<1000),分别代表现有城镇的数目和已修建的道路的数目。城镇分别以0~N-1编号。原创 2015-02-17 22:30:42 · 1215 阅读 · 1 评论 -
hdu 1217 Arbitrage 两种算法AC代码,Floyd+Bellman-Ford 大水题一枚 注意是有向图~~
Problem DescriptionArbitrage is the use of discrepancies in currency exchange rates to transform one unit of a currency into more than one unit of the same currency. For example, suppose that 1 US Dollar buys 0.5 British pound, 1 British pound buys 10.0 F原创 2015-02-17 21:38:13 · 1301 阅读 · 0 评论 -
hdu 1535 Invitation Cards 大年初一首A 一次正向SPFA+一次逆向SPFA
Invitation CardsTime Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 2311 Accepted Submission(s): 1125Problem DescriptionIn the age o原创 2015-02-19 17:26:33 · 1095 阅读 · 0 评论 -
hdu 2544 最短路 水的不能再水的最短路~~~Floyd就能过
Problem Description在每年的校赛里,所有进入决赛的同学都会获得一件很漂亮的t-shirt。但是每当我们的工作人员把上百件的衣服从商店运回到赛场的时候,却是非常累的!所以现在他们想要寻找最短的从商店到赛场的路线,你可以帮助他们吗? Input输入包括多组数据。每组数据第一行是两个整数N、M(N<=100,M<=10000),N表示成都的大街上有几个路口,标号为1的路口是商店所在地,标号为N的路口是赛场所在地,M则表示在成都有几条路。N=M=0表示输入结束。接下来M行,每行包括3个原创 2015-02-15 20:50:37 · 901 阅读 · 0 评论