最短路_Dijkstra
文章平均质量分 81
h1021456873
这个作者很懒,什么都没留下…
展开
-
51nod 1459 迷宫游戏 (最短路)
你来到一个迷宫前。该迷宫由若干个房间组成,每个房间都有一个得分,第一次进入这个房间,你就可以得到这个分数。还有若干双向道路连结这些房间,你沿着这些道路从一个房间走到另外一个房间需要一些时间。游戏规定了你的起点和终点房间,你首要目标是从起点尽快到达终点,在满足首要目标的前提下,使得你的得分总和尽可能大。现在问题来了,给定房间、道路、分数、起点和终点等全部信息,你能计算在尽快离开迷宫的前提下,你的最大原创 2015-11-03 14:58:08 · 486 阅读 · 0 评论 -
POJ 1847 火车变轨道 (简单最短路)
题意:火车从一点开到另一点,轨道上有很多岔路口,每个路口都有好几个方向(火车能够选任意一个方向开),但是 默认的是 第一个指向的方向,所以如果要选择别的方向的话得 进行一次切换操作 ,给定一个起点一个终点 ,问最少进行几次 切换操作 能够 使 火车 完成这个历程 , 如果开不到,输出“-1”。 貌似很简单啊,直接把与第一个相连的距离置为0,后面相连的置为1 然后用最短路的方原创 2017-03-26 16:56:27 · 733 阅读 · 0 评论 -
POJ3159 最大差距(差分约束系统 ,Dijkstra+Heap)
班上有n个同学,现在有一些糖要分给他们,设第i个同学得到的糖为p[i],分糖必须满足条件:第i个同学要求第j个同学的糖不能超过自己k个,即p[j] - p[i] = 0。要求在满足这些条件的情况下,求出p[n] - p[1]的最大值。 由p[j] - p[i] 在单源最短路径的算法中有一步是“若mindis[j] > mindis[i] + dis[i][j],则mindis[j] = mi原创 2017-03-26 11:02:20 · 627 阅读 · 0 评论 -
POJ - 3268 Silver Cow Party (最短路)
One cow from each of N farms (1 ≤ N ≤ 1000) conveniently numbered 1..N is going to attend the big cow party to be held at farm #X (1 ≤ X ≤ N). A total of M (1 ≤ M ≤ 100,000) unidirectional (one-way r原创 2017-03-19 20:47:06 · 216 阅读 · 0 评论 -
POJ 1797 Heavy Transportation (最短路)
Background Hugo Heavy is happy. After the breakdown of the Cargolifter project he can now expand business. But he needs a clever man who tells him whether there really is a way from the place his cu原创 2017-03-19 20:03:19 · 283 阅读 · 0 评论 -
POJ 2387 Til the Cows Come Home (最短路)
Bessie is out in the field and wants to get back to the barn to get as much sleep as possible before Farmer John wakes her for the morning milking. Bessie needs her beauty sleep, so she wants to get b原创 2017-03-19 15:34:27 · 276 阅读 · 0 评论 -
CSU - 1808 地铁 (最短路,维护边)
1808: 地铁 Description Bobo居住在大城市ICPCCamp。 ICPCCamp 有 n 个地铁站,用 1,2,…,n 编号。 m 段双向的地铁线路连接 n 个地铁站,其中第 i 段地铁属于 ci 号线,位于站 ai,bi 之间,往返均需要花费 ti 分钟(即从 ai 到 bi 需要 ti 分钟,从 bi 到 ai 也需要 ti 分钟)。 众所周知原创 2017-01-22 14:37:41 · 461 阅读 · 0 评论 -
PAT 1087. All Roads Lead to Rome (最短路变形_好题)
Indeed there are many different tourist routes from our city to Rome. You are supposed to find your clients the route with the least cost while gaining the most happiness. Input Specification: Each原创 2016-12-06 10:00:23 · 465 阅读 · 0 评论 -
PAT 1072. Gas Station (求n次最短路)
A gas station has to be built at such a location that the minimum distance between the station and any of the residential housing is as far away as possible. However it must guarantee that all the hou原创 2016-12-03 20:37:49 · 368 阅读 · 0 评论 -
POJ 3268 Silver Cow Party (Dijkstra_来回)
Description One cow from each of N farms (1 ≤ N ≤ 1000) conveniently numbered 1..N is going to attend the big cow party to be held at farm #X (1 ≤ X ≤ N). A total of M (1 ≤ M ≤ 100,000) unidirect原创 2016-11-05 20:28:41 · 285 阅读 · 0 评论 -
csu 1106 最优对称路径(最短路+路径数)
给一个n行n列的网格,每个格子里有一个1到9的数字。你需要从左上角走到右下角,其中每一步只能往上、下、左、右四个方向之一走到相邻格子,不能斜着走,也不能走出网格,但可以重复经过一个格子。为了美观,你经过的路径还必须关于“左下-右上”这条对角线对称。下图是一个6x6网格上的对称路径。 你的任务是统计所有合法路径中,数字之和最小的路径有多少条。 Input 输入最多包含25组测原创 2017-04-03 21:11:52 · 489 阅读 · 0 评论