博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
山东省第四届ACM省赛题——Proxy(dijistra+多条最短路)
阅读量:2344 次
发布时间:2019-05-10

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

题目描述

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

真正的黑历史,省赛的时候知道题意就是没思路,要是早点多做几道邝斌的题就过了。就暑假这段时间练了下,结果就1A。。。我还是太菜

给一个有向图,求0点到n+1点的最短路径上直接与0点连接的点,如果有多条最短路就输出编号最小的那个。思路就是反向建图,求出终点到起点的最短路径,然后从小到大枚举所有与0点连接的点n,只要dis[n]+map[n][0]=dis[0]成立就退出,注意起点直接与终点相连的情况。

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#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]
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("-1\n"); continue; } sort(near,near+ne); int ans; for(int i=0; i

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

你可能感兴趣的文章
常用排序算法总结
查看>>
Java输入输出
查看>>
MSSQL数据库常见问题
查看>>
Java8 Lambda
查看>>
JAVA面试700问
查看>>
数据库DDL,DML,DCL,TCL
查看>>
各大数据库概述,比较
查看>>
子页面跳转
查看>>
常用算法总结
查看>>
数据库连接池
查看>>
JAVA Webservice
查看>>
Hibernate自动生成实体类
查看>>
Java Memcached
查看>>
JAVA WebSpider
查看>>
XML自动建表/存库
查看>>
Java实现Web服务器
查看>>
C# readonly与const的区别
查看>>
MFC 自定义消息的一般过程
查看>>
剖析Windows消息处理机制
查看>>
多线程入门教程(二)基本概念
查看>>