PAT1018 (dijkstra+dfs)
There is a public bike service in Hangzhou City which provides great convenience to the tourists from all over the world. One may rent a bike at any station and return it to any other stations in the city.
The Public Bike Management Center (PBMC) keeps monitoring the real-time capacity of all the stations. A station is said to be in perfect condition if it is exactly half-full. If a station is full or empty, PBMC will collect or send bikes to adjust the condition of that station to perfect. And more, all the stations on the way will be adjusted as well.
When a problem station is reported, PBMC will always choose the shortest path to reach that station. If there are more than one shortest path, the one that requires the least number of bikes sent from PBMC will be chosen.

Figure 1
Figure 1 illustrates an example. The stations are represented by vertices and the roads correspond to the edges. The number on an edge is the time taken to reach one end station from another. The number written inside a vertex S is the current number of bikes stored at S. Given that the maximum capacity of each station is 10. To solve the problem at S3, we have 2 different shortest paths:
1. PBMC -> S1 -> S3. In this case, 4 bikes must be sent from PBMC, because we can collect 1 bike from S1 and then take 5 bikes to S3, so that both stations will be in perfect conditions.
2. PBMC -> S2 -> S3. This path requires the same time as path 1, but only 3 bikes sent from PBMC and hence is the one that will be chosen.
Input Specification:
Each input file contains one test case. For each case, the first line contains 4 numbers: Cmax (<= 100), always an even number, is the maximum capacity of each station; N (<= 500), the total number of stations; Sp, the index of the problem station (the stations are numbered from 1 to N, and PBMC is represented by the vertex 0); and M, the number of roads. The second line contains N non-negative numbers Ci(i=1,...N) where each Ci is the current number of bikes at Si respectively. Then M lines follow, each contains 3 numbers: Si, Sj, and Tij which describe the time Tij taken to move betwen stations Si and Sj. All the numbers in a line are separated by a space.
Output Specification:
For each test case, print your results in one line. First output the number of bikes that PBMC must send. Then after one space, output the path in the format: 0->S1->...->Sp. Finally after another space, output the number of bikes that we must take back to PBMC after the condition of Sp is adjusted to perfect.
Note that if such a path is not unique, output the one that requires minimum number of bikes that we must take back to PBMC. The judge's data guarantee that such a path is unique.
Sample Input:
10 3 3 5
6 7 0
0 1 1
0 2 1
0 3 3
1 3 1
2 3 1
Sample Output:
3 0->2->3 0
题目大意是找一条最短路径,(走每条路径,都要把节点调整为最佳状态,带走或增加一些车子)有多条最短路径时,输出从管理中心最少带出的车子。带出的车子相同时,输出带回最少的车子。
dijkstra求最短路径有一些拓展问题:如何求出有多少条最短路径;如何输出路径;包含一些附加信息是我的处理
有多少条最短路径和输出最短路径可以归为一种解法。我们定义vector<int>q[n],q[i].size()表示最短路径的个数。通过dfs可以输出最短路径。
对于这个问题,我们还有限制条件。所以对所有的最短路径做一遍dfs,保存答案即可。
下面是代码:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<vector>
using namespace std;
int e[][];
int dis[];
int c[];
bool vis[];
const int inf=0x3f3f3f3f;
int cmax,n,s,m;
vector<int>q[];
vector<int>path,temppath;
int mintake,minback;
void dijkstra(int d)
{
memset(vis,,sizeof(vis));
dis[]=;
for(int i=;i<=n;i++)
dis[i]=e[][i];
while()
{
int maxx=inf,tmp=-;
for(int i=;i<=n;i++)
{
if(vis[i]==&&dis[i]<maxx)
{
maxx=dis[i];
tmp=i;
}
}
vis[tmp]=;
if(tmp==-)
break;
for(int i=;i<=n;i++)
{
if(vis[i]==&&e[tmp][i]!=inf)
{
if(dis[i]>dis[tmp]+e[tmp][i])
{
q[i].clear();
q[i].push_back(tmp);
dis[i]=dis[tmp]+e[tmp][i];
}
else if(dis[i]==dis[tmp]+e[tmp][i])
{
q[i].push_back(tmp);
}
}
}
}
}
void dfs(int v)
{
temppath.push_back(v);
if(v==)
{
int back=,take=;
for(int i=temppath.size()-;i>=;i--)
{
int id=temppath[i];
if(c[id]>)
back+=c[id]; //需要带走的
else
{
if(back>(-c[id]))//如果之前带走的大于当前需要的
{
back+=c[id];
}
else
{
take+=-(back+c[id]);
back=;
}
}
}
if(take<mintake)
{
mintake=take;
minback=back;
path=temppath;
}
else if(take==mintake&&back<minback)
{
mintake=take;
minback=back;
path=temppath;
}
temppath.pop_back();
return;
}
for(int i=;i<q[v].size();i++)
dfs(q[v][i]);
temppath.pop_back();
}
int main()
{
mintake=inf;minback=inf;
scanf("%d%d%d%d",&cmax,&n,&s,&m);
int a,b,cost;
memset(e,inf,sizeof(e));
for(int i=;i<=n;i++)
{
scanf("%d",&c[i]);
c[i]-=cmax/;
} for(int i=;i<=m;i++)
{
scanf("%d%d%d",&a,&b,&cost);
e[a][b]=e[b][a]=cost;
}
dijkstra(s);
dfs(s);
printf("%d 0",mintake);
for(int i=path.size()-;i>=;i--)
cout<<"->"<<path[i];
cout<<" "<<minback<<endl;
}
类似的问题还有PAT1003,也是多条最短路径的限制问题。
PAT1018 (dijkstra+dfs)的更多相关文章
- PAT-1018 Public Bike Management(dijkstra + dfs)
1018. Public Bike Management There is a public bike service in Hangzhou City which provides great co ...
- 【bzoj4016】[FJOI2014]最短路径树问题 堆优化Dijkstra+DFS树+树的点分治
题目描述 给一个包含n个点,m条边的无向连通图.从顶点1出发,往其余所有点分别走一次并返回. 往某一个点走时,选择总长度最短的路径走.若有多条长度最短的路径,则选择经过的顶点序列字典序最小的那条路径( ...
- PAT-1030 Travel Plan (30 分) 最短路最小边权 堆优化dijkstra+DFS
PAT 1030 最短路最小边权 堆优化dijkstra+DFS 1030 Travel Plan (30 分) A traveler's map gives the distances betwee ...
- 天梯赛练习 L3-011 直捣黄龙 (30分) dijkstra + dfs
题目分析: 本题我有两种思路,一种是只依靠dijkstra算法,在dijkstra部分直接判断所有的情况,以局部最优解得到全局最优解,另一种是dijkstra + dfs,先计算出最短距离以及每个点的 ...
- 1030 Travel Plan Dijkstra+dfs
和1018思路如出一辙,先求最短路径,再dfs遍历 #include <iostream> #include <cstdio> #include <vector> ...
- patest_1003_Emergency (25)_(dijkstra+dfs)
1003. Emergency (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue As an emerg ...
- 1018 Public Bike Management (30分) PAT甲级真题 dijkstra + dfs
前言: 本题是我在浏览了柳神的代码后,记下的一次半转载式笔记,不经感叹柳神的强大orz,这里给出柳神的题解地址:https://blog.csdn.net/liuchuo/article/detail ...
- PAT 1111 Online Map[Dijkstra][dfs]
1111 Online Map(30 分) Input our current position and a destination, an online map can recommend seve ...
- 【PAT甲级】1087 All Roads Lead to Rome (30 分)(dijkstra+dfs或dijkstra+记录路径)
题意: 输入两个正整数N和K(2<=N<=200),代表城市的数量和道路的数量.接着输入起点城市的名称(所有城市的名字均用三个大写字母表示),接着输入N-1行每行包括一个城市的名字和到达该 ...
随机推荐
- Lua脚本语法说明(转)
Lua脚本语法说明(增加lua5.1部份特性) Lua 的语法比较简单,学习起来也比较省力,但功能却并不弱. 所以,我只简单的归纳一下Lua的一些语法规则,使用起来方便好查就可以了.估计看完了,就懂得 ...
- JS与Android交互
一.Android调用JS 2种方法 1.通过WebView的loadUrl 2.通过WebView的evaluateJavascript
- Hadoop 3.0 安装
1. 下载Hadoop 3.0 http://mirrors.tuna.tsinghua.edu.cn/apache/hadoop/common/hadoop-3.0.0/hadoop-3. ...
- window(win7)下安装ubuntu14.04lts (desktop)系统
一.前期准备 1.大于2G的U盘一个(我的系统盘制作完成后大约占1个多G的容量) 2.已下载好的Ubuntu安装文件(选择在官网下载,有32和64位选择) 3.已安装好UltraISO软件的电脑(Ul ...
- mp3-
- 用ADO操作数据库的方法步骤(ZT)
http://www.cppblog.com/changshoumeng/articles/113437.html 学习ADO时总结的一些经验 用ADO操作数据库的方法步骤 ADO接口简介 ADO库包 ...
- Haskell语言学习笔记(76)Data.Tree
Data.Tree data Tree a = Node { rootLabel :: a, subForest :: Forest a } deriving (Eq, Read, Show) typ ...
- Linux IP和网关配置
操作环境 SuSE11/SuSE10 配置方法一<永久有效,重启不失效> 通过修改/etc/sysconfig/network/ifcfg-eth*文件直接配置,服务器重启不失效,建议使用 ...
- 收藏点webservice接口
商业和贸易: 1.股票行情数据 WEB 服务(支持香港.深圳.上海基金.债券和股票:支持多股票同时查询) Endpoint: http://webservice.webxml.com.cn/WebSe ...
- JavaScript中的setInterval用法
setInterval动作的作用是在播放动画的时,每隔一定时间就调用函数,方法或对象.可以使用本动作更新来自数据库的变量或更新时间显示.setInterval动作的语法格式如下:setInterval ...