博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU4725(spfa+双端队列优化)
阅读量:1906 次
发布时间:2019-04-26

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

Problem Description

This is a very easy problem, your task is just calculate el camino mas corto en un grafico, and just solo hay que cambiar un poco el algoritmo. If you do not understand a word of this paragraph, just move on.

The Nya graph is an undirected graph with "layers". Each node in the graph belongs to a layer, there are N nodes in total.
You can move from any node in layer x to any node in layer x + 1, with cost C, since the roads are bi-directional, moving from layer x + 1 to layer x is also allowed with the same cost.
Besides, there are M extra edges, each connecting a pair of node u and v, with cost w.
Help us calculate the shortest path from node 1 to node N.

 

 

Input

The first line has a number T (T <= 20) , indicating the number of test cases.

For each test case, first line has three numbers N, M (0 <= N, M <= 105) and C(1 <= C <= 103), which is the number of nodes, the number of extra edges and cost of moving between adjacent layers.
The second line has N numbers li (1 <= li <= N), which is the layer of ith node belong to.
Then come N lines each with 3 numbers, u, v (1 <= u, v < =N, u <> v) and w (1 <= w <= 104), which means there is an extra edge, connecting a pair of node u and v, with cost w.

 

 

Output

For test case X, output "Case #X: " first, then output the minimum cost moving from node 1 to node N.

If there are no solutions, output -1.

 

 

Sample Input

 

2 3 3 3 1 3 2 1 2 1 2 3 1 1 3 3 3 3 3 1 3 2 1 2 2 2 3 2 1 3 4

 

 

Sample Output

 

Case #1: 2

Case #2: 3

N个点,然后有N层,要假如2*N个点。 总共是3*N个点。 点1~N就是对应的实际的点1~N.  要求的就是1到N的最短路。 然后点N+1 ~ 3*N 是N层拆出出来的点。 第i层,入边到N+2*i-1, 出边从N+2*i 出来。(1<= i <= N) N + 2*i    到  N + 2*(i+1)-1 加边长度为C. 表示从第i层到第j层。 N + 2*(i+1) 到 N + 2*i - 1 加边长度为C,表示第i+1层到第j层。 如果点i属于第u层,那么加边 i -> N + 2*u -1         N + 2*u ->i  长度都为0

代码:

#include
using namespace std;const int maxn=300005;const int INF=0x3f3f3f3f;int head[maxn];bool vis[maxn];int dis[maxn];int tot;int N,M,C;inline int read(){ char ls=getchar();for (;ls<'0'||ls>'9';ls=getchar()); int x=0;for (;ls>='0'&&ls<='9';ls=getchar()) x=x*10+ls-'0'; return x;}struct node{ int v,w,next; node(){} node(int v,int w,int next):v(v),w(w),next(next){} bool operator <(const node &rhs)const { return v > rhs.v; }}E[maxn*5];void add(int u,int v,int w){ E[tot].v=v; E[tot].w=w; E[tot].next=head[u]; head[u]=tot++;}void init(){ tot=0; memset(head,-1,sizeof(head));}void spfa(int st,int ed){ for(int i=1;i<=ed;i++) { vis[i]=false; dis[i]=INF; } dis[st]=0; vis[st]=true; int now,next; deque
q; q.push_back(st); while(!q.empty()) { now=q.front(); q.pop_front(); vis[now]=false; for(int i=head[now];i!=-1;i=E[i].next) { next=E[i].v; if(dis[next]>dis[now]+E[i].w) { dis[next]=dis[now]+E[i].w; if(!vis[next]) { vis[next]=true; q.push_back(next); } } } }}int main(){ int T; T=read(); for(int tem=1;tem<=T;tem++) { init(); N=read(); M=read(); C=read(); int u,v,w; for(int i=1;i<=N;i++) { u=read(); add(i,u*2+N-1,0); add(u*2+N,i,0); } for(int i=1;i

 

转载地址:http://ljncf.baihongyu.com/

你可能感兴趣的文章
语义分割模型(Deeplab V3+ & GCN & UperNet & ENet & U-Net & SegNet)
查看>>
单目深度估计 monodepth2模型 代码
查看>>
搜索中的TSA(树搜索算法) & GSA(图搜索算法) & UCS(代价一致) & CSP(约束满足问题)
查看>>
位图索引Bitmap indexes
查看>>
YOLO算法(二)—— Yolov2 & yolo9000
查看>>
YOLO算法(三)—— Yolov3 & Yolo系列网络优缺点
查看>>
Python的__future__模块
查看>>
Paper reading —— Semantic Stereo Matching with Pyramid Cost Volumes(SSPCV-Net)
查看>>
计算机视觉中的cost-volume的概念具体指什么(代价体积)
查看>>
Paper reading——Pyramid Stereo Matching Network(PSM-Net)
查看>>
启发函数heuristic 与 A*
查看>>
Image Pyramid(图像金字塔)
查看>>
Oracle 作业记录
查看>>
putty连接AWS配置(multimedia project)
查看>>
Hourglass Network 沙漏网络 (pose estimation姿态估计)
查看>>
OpenCV实战(二)——答题卡识别判卷
查看>>
目标检测神经网络的发展历程(52 个目标检测模型)
查看>>
Boundary loss 损失函数
查看>>
神经网络调参实战(一)—— 训练更多次数 & tensorboard & finetune
查看>>
tensorflow使用tensorboard进行可视化
查看>>