博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[USACO06NOV] Roadblocks
阅读量:6176 次
发布时间:2019-06-21

本文共 3619 字,大约阅读时间需要 12 分钟。

题目描述

Bessie has moved to a small farm and sometimes enjoys returning to visit one of her best friends. She does not want to get to her old home too quickly, because she likes the scenery along the way. She has decided to take the second-shortest rather than the shortest path. She knows there must be some second-shortest path.

The countryside consists of R (1 ≤ R ≤ 100,000) bidirectional roads, each linking two of the N (1 ≤ N ≤ 5000) intersections, conveniently numbered 1..N. Bessie starts at intersection 1, and her friend (the destination) is at intersection N.

The second-shortest path may share roads with any of the shortest paths, and it may backtrack i.e., use the same road or intersection more than once. The second-shortest path is the shortest path whose length is longer than the shortest path(s) (i.e., if two or more shortest paths exist, the second-shortest path is the one whose length is longer than those but no longer than any other path).

贝茜把家搬到了一个小农场,但她常常回到FJ的农场去拜访她的朋友。贝茜很喜欢路边的风景,不想那么快地结束她的旅途,于是她每次回农场,都会选择第二短的路径,而不象我们所习惯的那样,选择最短路。 贝茜所在的乡村有R(1<=R<=100,000)条双向道路,每条路都联结了所有的N(1<=N<=5000)个农场中的某两个。贝茜居住在农场1,她的朋友们居住在农场N(即贝茜每次旅行的目的地)。 贝茜选择的第二短的路径中,可以包含任何一条在最短路中出现的道路,并且,一条路可以重复走多次。当然咯,第二短路的长度必须严格大于最短路(可能有多条)的长度,但它的长度必须不大于所有除最短路外的路径的长度。

输入输出格式

输入格式:

 

Line 1: Two space-separated integers: N and R

Lines 2..R+1: Each line contains three space-separated integers: A, B, and D that describe a road that connects intersections A and B and has length D (1 ≤ D ≤ 5000)

 

输出格式:

 

Line 1: The length of the second shortest path between node 1 and node N

 

输入输出样例

输入样例#1:
4 41 2 1002 4 2002 3 2503 4 100
输出样例#1:
450

说明

Two routes: 1 -> 2 -> 4 (length 100+200=300) and 1 -> 2 -> 3 -> 4 (length 100+250+100=450)

 

边可以重复走

严格次短路

A* 算法求第二短

#include
#include
#include
#define N 5001#define M 200001using namespace std;int n,s,t;int dis1[N];bool vis[N];int front[N],to[M],nxt[M],val[M],tot;struct node{ int num,dis; bool operator < (node p) const { return dis+dis1[num]>p.dis+dis1[p.num]; } }now,nt;void add(int u,int v,int w){ to[++tot]=v; nxt[tot]=front[u]; front[u]=tot; val[tot]=w; to[++tot]=u; nxt[tot]=front[v]; front[v]=tot; val[tot]=w;}void init(){ int m,u,v,w; scanf("%d%d",&n,&m); while(m--) { scanf("%d%d%d",&u,&v,&w); add(u,v,w); }}void spfa(){ memset(dis1,63,sizeof(dis1)); queue
q; dis1[n]=0; vis[n]=true; q.push(n); int now; while(!q.empty()) { now=q.front(); q.pop(); vis[now]=false; for(int i=front[now];i;i=nxt[i]) if(dis1[to[i]]>dis1[now]+val[i]) { dis1[to[i]]=dis1[now]+val[i]; if(!vis[to[i]]) { q.push(to[i]); vis[to[i]]=true; } } }}void Astar(){ if(dis1[1]>1e9) { printf("-1"); return; } int cnt=0,last=-1; priority_queue
q; now.num=1; now.dis=0; q.push(now); while(!q.empty()) { now=q.top(); q.pop(); if(now.num==n) { cnt++; if(cnt>1 && now.dis!=last) { printf("%d",now.dis); return; } else last=now.dis; } for(int i=front[now.num];i;i=nxt[i]) { nt.num=to[i]; nt.dis=now.dis+val[i]; q.push(nt); } } printf("-1");}int main(){ init(); spfa(); Astar();}

 

转载于:https://www.cnblogs.com/TheRoadToTheGold/p/7421260.html

你可能感兴趣的文章
Nginx 学习笔记
查看>>
你为什么选择程序员这个职业?
查看>>
[译] 用于 iOS 的 ML Kit 教程:识别图像中的文字
查看>>
InnoDB大数据插入的优化和FULLTEXT索引性能优化的调研
查看>>
chrome 73 以及之后的版本上安装crx插件出现「程序包无效 CRX_HEADER_INVALID」的报错解决办法...
查看>>
笔试记录集
查看>>
NoSQL Manager for MongoDB破解
查看>>
ViewPager+滑动条显示
查看>>
Load和initialize方法
查看>>
js自定义Android端手势事件
查看>>
spring boot 实现监听器、过滤器、全局异常处理
查看>>
工程师、产品经理、数据工程师是如何一起工作的?
查看>>
3-31周末总结
查看>>
Android热修复原理
查看>>
解密中国互联网企业创始人,程序员打下半壁江山
查看>>
深挖Spring Aop 底层实现(一)
查看>>
Shiro+JWT+Spring Boot Restful简易教程
查看>>
有关https的SSL加密方式
查看>>
ES6的开发环境搭建
查看>>
iOS JSON、XML解析技巧
查看>>