首页 > 编程知识 正文

山东省第四届ACM省赛题Proxydijistra 多条最短路

时间:2023-05-06 14:41:12 阅读:245476 作者:4206

题目描述
Because of the GFW (Great Firewall), we cannot directly visit many websites, such as Facebook, Twitter, YouTube, etc. But with the help of proxy and proxy server, we can easily get to these website.
You have a list of several proxy servers, some of them can be connected directly but others can’t. But you can visit proxy servers through other proxy server by a one-way connection.
As we all know, the lag of internet visit will decide our feelings of the visit. You have a very smart proxy software which will find the least lag way to reach the website once you choose a directly reachable proxy server.
You know the lag of every connection. The lag of your visit is the all the lags in your whole connection. You want to minimize the lag of visit, which proxy server you will choose?

输入
Multiple test cases, the first line is an integer T (T <= 100), indicating the number of test cases.
The first line of each test case is two integers N (0 <= N <= 1000), M (0 <= M <= 20000). N is the number of proxy servers (labeled from 1 to N).
0 is the label of your computer and (N+1) is the label of the server of target website.
Then M lines follows, each line contains three integers u, v, w (0 <= u, v <= N + 1, 1 <= w <= 1000), means u can directly connect to v and the lag is w.
输出
An integer in one line for each test case, which proxy server you will choose to connect directly. You can only choose the proxy server which can be connected directly from your computer.
If there are multiple choices, you should output the proxy server with the least label. If you can’t visit the target website by any means, output “-1” (without quotes). If you can directly visit the website and the lag is the least, output “0” (without quotes).
示例输入
4
3 6
0 1 10
1 2 1
2 4 4
0 3 2
3 2 1
3 4 7
2 4
0 2 10
0 1 5
1 2 4
2 1 7
1 3
0 2 1
0 1 2
1 2 1
1 3
0 2 10
0 1 2
1 2 1
示例输出
3
-1
0
1

真正的黑历史,省赛的时候知道题意就是没思路,要是早点多做几道fddbq的题就过了。就暑假这段时间练了下,结果就1A。。。我还是太菜
给一个有向图,求0点到n+1点的最短路径上直接与0点连接的点,如果有多条最短路就输出编号最小的那个。思路就是反向建图,求出终点到起点的最短路径,然后从小到大枚举所有与0点连接的点n,只要dis[n]+map[n][0]=dis[0]成立就退出,注意起点直接与终点相连的情况。

#include <iostream>#include <cstring>#include <string>#include <vector>#include <queue>#include <cstdio>#include <set>#include <cmath>#include <algorithm>#define INF 0x3f3f3f3f#define MAXN 200010#define Mod 10001using namespace std;int map[1005][1005],cost[1005][1005],vis[1005],dis[1005],n,m;int p[MAXN],level[MAXN];void dijkstra(int s){ int i,j,min,v; memset(vis,0,sizeof(vis)); for(i=0; i<=n+1; ++i) { dis[i]=map[s][i]; } dis[s]=0; vis[s]=1; for(i=0; i<=n+1; ++i) { v=-1; min=INF; for(j=0; j<=n+1; ++j) { if(!vis[j]&&dis[j]<min) { min=dis[j]; v=j; } } if(v==-1) break; vis[v]=1; for(j=0; j<=n+1; ++j) { if(!vis[j]&&map[v][j]<INF) { if(dis[j]>dis[v]+map[v][j]) { dis[j]=dis[v]+map[v][j]; } } } }}int near[MAXN];int main(){ int t,u,v,w; scanf("%d",&t); while(t--) { scanf("%d%d",&n,&m); for(int i=0; i<=n+1; i++) for(int j=0; j<=n+1; ++j) map[i][j]=INF; int ne=0; while(m--) { scanf("%d%d%d",&u,&v,&w); map[v][u]=w; if(u==0) near[ne++]=v; } dijkstra(n+1); if(dis[0]==INF) { printf("-1n"); continue; } sort(near,near+ne); int ans; for(int i=0; i<ne; ++i) { int u=near[i]; if(dis[u]+map[u][0]==dis[0]) { if(u==n+1) { ans=0; break; } ans=u; break; } } printf("%dn",ans); } return 0;}

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。