codeforces 1196F K-th Path 思维+floyd

http://codeforces.com/problemset/problem/1196/F
You are given a connected undirected weighted graph consisting of n vertices and m edges.

You need to print the k-th smallest shortest path in this graph (paths from the vertex to itself are not counted, paths from i to j and from j to i are counted as one).

More formally, if d is the matrix of shortest paths, where di,j is the length of the shortest path between vertices i and j (1≤i<j≤n), then you need to print the k-th element in the sorted array consisting of all di,j, where 1≤i<j≤n.

Input
The first line of the input contains three integers n,m and k (2≤n≤2⋅105, n−1≤m≤min(n(n−1)2,2⋅105), 1≤k≤min(n(n−1)2,400) — the number of vertices in the graph, the number of edges in the graph and the value of k, correspondingly.

Then m lines follow, each containing three integers x, y and w (1≤x,y≤n, 1≤w≤109, x≠y) denoting an edge between vertices x and y of weight w.

It is guaranteed that the given graph is connected (there is a path between any pair of vertices), there are no self-loops (edges connecting the vertex with itself) and multiple edges (for each pair of vertices x and y, there is at most one edge between this pair of vertices in the graph).

Output
Print one integer — the length of the k-th smallest shortest path in the given graph (paths from the vertex to itself are not counted, paths from i to j and from j to i are counted as one).

Examples
Input
6 10 5
2 5 1
5 3 9
6 2 2
1 3 1
5 1 8
6 5 10
1 6 5
6 4 6
3 6 2
3 4 5
Output
3
Input
7 15 18
2 6 3
5 7 4
6 5 4
3 6 9
6 7 7
1 6 4
7 1 6
7 2 1
4 3 2
3 2 8
5 3 6
2 5 5
3 7 9
4 1 8
2 1 1
Output
9
题目大意:给出一张无向图,求这个图中所有路径中第 k k k小路径的长度。
思路:把边按照权值进行排序,取最小的 k k k条边,记录这些边的顶点,那么最多可以得到 800 800 800个顶点,跑 f l o y d floyd floyd算法,然后将得到的结果排序输出第 k k k小即可。

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<vector>
using namespace std;
typedef long long ll;

const int maxn=2e5+5;

struct edge
{
	int from,to;
	ll dis;
	bool operator <(const edge &a)const
	{
		return dis<a.dis;
	}
}Edge[maxn];
vector<ll> vec;
ll a[805],s[805][805];
int len,n,m,k;

void floyd()
{
	for(int k=1;k<=len;k++)
		for(int i=1;i<=len;i++)
			for(int j=1;j<=len;j++)
				s[i][j]=min(s[i][j],s[i][k]+s[k][j]);
}

int main()
{
	scanf("%d%d%d",&n,&m,&k);
	for(int i=0;i<m;i++)
		scanf("%d%d%lld",&Edge[i].from,&Edge[i].to,&Edge[i].dis);
	sort(Edge,Edge+m);
	for(int i=0;i<k;i++)
	{
		a[len++]=Edge[i].from;
		a[len++]=Edge[i].to;
	}
	sort(a,a+len);
	len=unique(a,a+len)-a;
	for(int i=1;i<=len;i++)
		for(int j=1;j<=len;j++)
			s[i][j]=1e16;
	int t1,t2;
	for(int i=0;i<k;i++)
	{
		t1=upper_bound(a,a+len,Edge[i].from)-a;
		t2=upper_bound(a,a+len,Edge[i].to)-a;
		s[t1][t2]=s[t2][t1]=Edge[i].dis;
	}
	floyd();
	for(int i=1;i<=len;i++)
		for(int j=i+1;j<=len;j++)
			if(s[i][j]!=1e16)
				vec.push_back(s[i][j]);
	sort(vec.begin(),vec.end());
	printf("%lld\n",vec[k-1]);
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值