一个人的旅行 HDU - 2066 (最短路)
一个人的旅行
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 50701 Accepted Submission(s): 16857
接着有T行,每行有三个整数a,b,time,表示a,b城市之间的车程是time小时;(1=<(a,b)<=1000;a,b 之间可能有多条路)
接着的第T+1行有S个数,表示和草儿家相连的城市;
接着的第T+2行有D个数,表示草儿想去地方。
Sample Input
- 6 2 3
- 1 3 5
- 1 4 7
- 2 8 12
- 3 8 4
- 4 9 12
- 9 10 2
- 1 2
- 8 9 10
Sample Output
- 9
- 思路:最短路的题目,用floyd 会超时的,用dijkstra就可以,只需要把家看作0,并且将相邻的那些火车站的cost边权看为0就好了(cost[0][u]=0)
- #include<cstdio>
- #include<iostream>
- #include<algorithm>
- #include<cstring>
- #include<cmath>
- #include<cstdlib>
- #include<queue>
- #include<set>
- #include<map>
- #include<vector>
- using namespace std;
- #define INF 0x3f3f3f3f
- #define eps 1e-10
- typedef long long ll;
- const int maxn = 1e3+;
- const int mod = 1e9 + ;
- int gcd(int a, int b) {
- if (b == ) return a; return gcd(b, a % b);
- }
- int cost[maxn][maxn];
- int d[maxn];
- bool used[maxn];
- int T,n;
- void dijk(int s)
- {
- fill(d,d+,INF);
- fill(used,used+,false);
- d[s]=;
- while(true)
- {
- int v=-;
- for(int u=;u<=n;u++)
- {
- if(!used[u]&&(v==-||d[u]<d[v]))
- v=u;
- }
- if(v==-)
- break;
- used[v]=true;
- for(int u=;u<=n;u++)
- d[u]=min(d[u],d[v]+cost[v][u]);
- }
- }
- int main()
- {
- int S,D;
- while(cin>>T>>S>>D)
- {
- memset(cost,INF,sizeof(cost));
- for(int i=;i<;i++)
- cost[i][i]=;
- memset(d,INF,sizeof(d));
- n=;
- while(T--)
- {
- int a,b,l;
- cin>>a>>b>>l;
- n=max(max(a,b),n);
- if(l<cost[a][b])
- {
- cost[a][b]=l;
- cost[b][a]=l;
- }
- }
- while(S--)
- {
- int a;
- cin>>a;
- cost[][a]=;
- cost[a][]=;
- }
- dijk();
- int ans=INF;
- for(int i=;i<D;i++)
- {
- int end;
- cin>>end;
- ans=min(ans,d[end]);
- }
- cout<<ans<<endl;
- }
- }
一个人的旅行 HDU - 2066 (最短路)的更多相关文章
- hdu 2066 ( 最短路) Floyd & Dijkstra & Spfa
http://acm.hdu.edu.cn/showproblem.php?pid=2066 今天复习了一下最短路和最小生成树,发现居然闹了个大笑话-----我居然一直写的是Floyd,但我自己一直以 ...
- HDU 2066 最短路floyd算法+优化
http://acm.hdu.edu.cn/showproblem.php?pid=206 题意 从任意一个邻居家出发 到达任意一个终点的 最小距离 解析 求多源最短路 我想到的是Floyd算法 但是 ...
- 一个人的旅行HDU 2066 floyd
一个人的旅行 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Subm ...
- hdu 2066 最短路水题
题意:给出多个可选择的起始点和终点,求最短路 思路:执行起始点次的spfa即可 代码: #include<iostream> #include<cstdio> #include ...
- HDU - 2066 最短路+加一个节点
一个图上,有M条边,Z个出发点,Y个终止点.求一条最短路,其中起点是Z中的任意一点,终点是Y中任意一点. Input 输入数据有多组,输入直到文件结束. 每组的第一行是三个整数M,Z,Y 接着有M行, ...
- # H - H HDU - 2066 (多起点、多终点问题)
H - H HDU - 2066 (多源点.多汇点问题) 一个图上,有M条边,Z个出发点,Y个终止点.求一条最短路,其中起点是Z中的任意一点,终点是Y中任意一点. Input 输入数据有多组,输入直到 ...
- ACM: HDU 2544 最短路-Dijkstra算法
HDU 2544最短路 Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Descrip ...
- UESTC 30 &&HDU 2544最短路【Floyd求解裸题】
最短路 Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submiss ...
- hdu 5521 最短路
Meeting Time Limit: 12000/6000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)Total ...
随机推荐
- OkHttp工具类
package test; import java.io.File; import java.io.IOException; import java.util.ArrayList; import ja ...
- 利用PyQt GUI显示图片、实时播放视频
---作者吴疆,未经允许,严禁转载,违权必究--- ---欢迎指正,需要源码和文件可站内私信联系--- -----------点击此处链接至博客园原文----------- 功能说明:PyQt界面程序 ...
- rabbit的简单搭建,java使用rabbitmq queue的简单例子和一些坑
一 整合 由于本人的码云太多太乱了,于是决定一个一个的整合到一个springboot项目里面. 附上自己的项目地址https://github.com/247292980/spring-boot 以整 ...
- 前端-页面性能调试:Hiper
前端-页面性能调试:Hiper 我们写单页面应用,想看页面修改后性能变更其实挺繁琐的.有时想知道是「正优化」还是「负优化」只能靠手动刷新查看network.而Hiper很好解决了这一痛点(其实Hi ...
- WPF:鼠标长时间无操作,窗口隐藏
//设置鼠标长时间无操作计时器 private System.Timers.Timer MouseTimerTick = new System.Timers.Timer(10000); private ...
- [opencv3.2cmake error ] sys/videoio.h no such file or directories
I don't have /usr/include/sys/videoio.h at all Before that , I have ipp download question. So I down ...
- 修复SQL中的孤立账户
EXEC sys.sp_change_users_login 'AUTO_FIX','登录名',NULL,'登录密码'
- php使用GD库实现图片水印和缩略图——封装成类
学完了如何使用GD库来实现对图片的各种处理,那么我们可以发现,不管哪种方法,都有相似之处,如果我们把这些相似的地方和不相似的地方都封装成类,这样就可以提升代码的速度,而且节省了很多时间,废话不多说,来 ...
- HDU4417 线段树 + 离线处理
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4417 , 线段树(或树状数组) + 离线处理 最近看了几道线段树的题都是需要离线处理数据的,正好这块比 ...
- BZOJ 4541: [Hnoi2016]矿区 平面图转对偶图+DFS树
4541: [Hnoi2016]矿区 Time Limit: 30 Sec Memory Limit: 512 MBSubmit: 433 Solved: 182[Submit][Status][ ...