链接:https://www.luogu.org/problemnew/show/P2865

题目描述

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

题解:

在做本题前,一定理解最短路算法的核心思想。 当然,并不需要对所有的最短路算法有深刻了解。 所以今天我就给大家带来优先队列优化的dijsktra。(SPFA我不会)

那么问题来了,经典的dijkstra只能维护最短路,怎么去维护次短路呢?其实很简单,只要同时维护两个数组就行了。

那怎么更新呢?我们设dis1数组存最短路,dis2数组存最长路,当找到一条路,比dis1和dis2都短时,就先把目前次短路赋为目前最短路,也就是让dis2=dis1,再把目前最短路赋为找到的更短路。剩下的就是dijkstra的板子了。

当我们存边时,还是推荐大家用邻接表存边,只用写一个函数,跑的好像还比vector快,下面就为大家带来一个不怎么好看的dijkstra板:

#include<iostream>
#include<cstring>
#include<queue>
#include<algorithm>
#include<stack>
#include<vector>
#include<cstdio>
#define ll long long
#define inf 1e9+10
using namespace std;
const int maxn=1e5+;
struct mxr
{
int to,next,val;
}e[*maxn];
int n,cnt,m,vis[maxn],head[maxn],s;
int dis[maxn];
priority_queue<pair<ll,int> >q;
inline int read()
{
int s=,f=;char ch=getchar();
while(ch<''||ch>''){ch=getchar();
if(ch=='-')f=-;}
while(ch>=''&&ch<='')
s=(s<<)+(s<<)+(ch^),ch=getchar();
return s*f;
}
inline void add(int u,int v,int w)
{
e[cnt].to=v;
e[cnt].val=w;
e[cnt].next=head[u];
head[u]=cnt++;
return ;
}
inline void dij()
{
q.push(make_pair(,s));
dis[s]=;
while(!q.empty())
{
int now=q.top().second;
q.pop();
if(vis[now]) continue;
vis[now]=;
for(int i=head[now];i!=-;i=e[i].next)
{
int v=e[i].to;
if(dis[v]>dis[now]+e[i].val)
{
dis[v]=dis[now]+e[i].val;
q.push(make_pair(-dis[v],v));
}
}
}
return ;
}
int main()
{
memset(head,-,sizeof(head));
cnt=;
n=read(),m=read(),s=read();
for(int i=;i<=n;i++) dis[i]=inf;
for(int i=;i<=m;i++)
{
int a,b,w;
a=read(),b=read(),w=read();
add(a,b,w);
}
dij();
for(int i=;i<=n;i++) printf("%d ",dis[i]);
return ;
}

下面是本题代码:

#include<iostream>
#include<cstring>
#include<queue>
#include<algorithm>
#include<stack>
#include<vector>
#include<cstdio>
#define ll long long
#define inf 1e9+10
using namespace std;
const int maxn=1e5+;
struct mxr
{
int to,next,val;
}e[*maxn];
int n,cnt,m,head[maxn];
int dis1[maxn],dis2[maxn];
priority_queue<pair<ll,int> >q;
inline char nc()//fread,跑的快
{
static char buf[],*L=buf,*R=buf;
return L==R&&(R=(L=buf)+fread(buf,,,stdin),L==R)?EOF:*L++;
}
inline int read()
{
int ret=,f=;char ch=nc();
while (ch<''||ch>''){if (ch=='-') f=-;ch=nc();}
while (ch>=''&&ch<='') ret=ret*+ch-'',ch=nc();
return ret*f;
}
inline void write(int x)
{
if(x<) putchar('-'),x=-x;
if(x>) write(x/);
putchar(x%+'');
return ;
}
inline void add(int u,int v,int w)//邻接表存边,貌似比vector快
{
e[cnt].to=v;
e[cnt].val=w;
e[cnt].next=head[u];
head[u]=cnt++;
return ;
}
inline void dij()//优先队列优化dijkstra
{
for(register int i=;i<=n;++i) dis1[i]=inf,dis2[i]=inf;
dis1[]=;
q.push(make_pair(,));
while(!q.empty())
{
int now=q.top().second,dis=-q.top().first;
q.pop();
for(register int i=head[now];i!=-;i=e[i].next)
{
int v=e[i].to;
if(dis1[v]>dis+e[i].val)
dis2[v]=dis1[v],dis1[v]=dis+e[i].val,q.push(make_pair(-dis1[v],v));//找到更优,更新dis1与dis2
if(dis2[v]>dis+e[i].val&&dis1[v]<dis+e[i].val)
dis2[v]=dis+e[i].val,q.push(make_pair(-dis2[v],v));//找到比dis2优,比dis1劣,更新dis2
}
}
return ;
}
int main()
{
memset(head,-,sizeof(head));
cnt=;
n=read(),m=read();
for(register int i=;i<=m;++i)
{
int a,b,w;
a=read(),b=read(),w=read();
add(a,b,w),add(b,a,w);
}
dij();
write(dis2[n]),puts(" ");
return ;
}

谢谢大家!

洛谷题解 P2865 【[USACO06NOV]路障Roadblocks】的更多相关文章

  1. 洛谷——P2865 [USACO06NOV]路障Roadblocks

    P2865 [USACO06NOV]路障Roadblocks 题目描述 Bessie has moved to a small farm and sometimes enjoys returning ...

  2. 络谷 P2865 [USACO06NOV]路障Roadblocks

    P2865 [USACO06NOV]路障Roadblocks 题目描述 Bessie has moved to a small farm and sometimes enjoys returning ...

  3. P2865 [USACO06NOV]路障Roadblocks

    P2865 [USACO06NOV]路障Roadblocks 最短路(次短路) 直接在dijkstra中维护2个数组:d1(最短路),d2(次短路),然后跑一遍就行了. attention:数据有不同 ...

  4. 洛谷P2865 [USACO06NOV]路障Roadblocks——次短路

    给一手链接 https://www.luogu.com.cn/problem/P2865 这道题其实就是在维护最短路的时候维护一下次短路就okay了 #include<cstdio> #i ...

  5. POJ——T 3255 Roadblocks|| COGS——T 315. [POJ3255] 地砖RoadBlocks || 洛谷—— P2865 [USACO06NOV]路障Roadblocks

    http://poj.org/problem?id=3255 Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 15680   ...

  6. 洛谷 题解 UVA572 【油田 Oil Deposits】

    这是我在洛谷上的第一篇题解!!!!!!!! 这个其实很简单的 我是一只卡在了结束条件这里所以一直听取WA声一片,详细解释代码里见 #include<iostream> #include&l ...

  7. 洛谷 题解 P1600 【天天爱跑步】 (NOIP2016)

    必须得说,这是一道难题(尤其对于我这样普及组205分的蒟蒻) 提交结果(NOIP2016 天天爱跑步): OJ名 编号 题目 状态 分数 总时间 内存 代码 / 答案文件 提交者 提交时间 Libre ...

  8. 洛谷题解P4314CPU监控--线段树

    题目链接 https://www.luogu.org/problemnew/show/P4314 https://www.lydsy.com/JudgeOnline/problem.php?id=30 ...

  9. 【洛谷 P2865】 [USACO06NOV]路障Roadblocks(最短路)

    题目链接 次短路模板题. 对每个点记录最短路和严格次短路,然后就是维护次值的方法了. 和这题一样. #include <cstdio> #include <queue> #in ...

随机推荐

  1. 理解contextmanager

    同事在查看网络问题导致虚拟机状态一直pause时,在一段代码(见以下)处产生了疑惑.问我,我也是一头雾水.后同事找到参考文章(1),算是了解了个大概.而我对contextmanager的工作产生了兴趣 ...

  2. json、pickle\shelve模块(超级好用~!)讲解

    json.pickle模块讲解 见我前面的文章:http://www.cnblogs.com/itfat/p/7456054.html shelve模块讲解(超级好用~!) json和pickle的模 ...

  3. 转:Oracle里几组重要的视图--v$sysstat,v$system_event,v$parameter v$system_parameter

    按组分的几组重要的性能视图 1.System 的 over view v$sysstat , v$system_event  , v$parameter,V$instance得到oracle_sid ...

  4. explain解析

    MySQL执行计划调用方式执行计划包含的信息执行计划显示内容解读MySQL执行计划的局限MySQL5.6支持OPTIMIZER_TRACE 1.什么是归并排序?将已有序的子序列合并,得到完全有序的序列 ...

  5. 众包高效实用的.NET开源项目

    1.Akka.NET: 概述:更轻松地构建强大的并发和分布式应用. 简介:Akka.NET是一个用于在.NET和Mono上构建高度并发,分布式和容错的事件驱动应用程序的工具包和运行时. 开源地址:ht ...

  6. js操作indexedDB增删改查示例

    js操作indexedDB增删改查示例 if ('indexedDB' in window) { // 如果数据库不存在则创建,如果存在但是version更大,会自动升级不会复制原来的版本 var r ...

  7. Scala介绍

    强大的编程语言 Scala 是一门非常强大的语言,它允许用户使用命令和函数范式进行编写代码,因此,编程时你可以使用常用的命令式语句,就像我们使用 C.Java.PHP 以及很多其他语言一样,而且,你也 ...

  8. memcache 随笔

    第一次用可能有很多不足的地方  以后慢慢改进. memcache  是一个简单的键/值对    是通过键和值储存信息到memcache中 ,通过特定的键请求来返回信息. 信息会无限期的保留在内存中 : ...

  9. SpringAOP02 自定义注解

    1 自定义注解 1.1 创建自定义注解 从java5开始就可以利用 @interface 来定义自定义注解 技巧01:注解不能直接干扰程序代码的运行(即:注解的增加和删除操作后,代码都可以正常运行) ...

  10. Log4php使用指南

      一.Log4php简介 Log4php是Log4xx系列日志组件之一,是Log4j迁移到php的版本,主要用来记录日志信息,支持多种输入目的地,包括:日志文件.日志回滚文件.数据库.日志服务器等等 ...