CF1196F.K-th Path

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a connected undirected weighted graph consisting of nn vertices and mm edges.

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

More formally, if dd is the matrix of shortest paths, where di,jd_{i, j} is the length of the shortest path between vertices ii and jj ( 1i<jn1 \le i < j \le n ), then you need to print the kk -th element in the sorted array consisting of all di,jd_{i, j} , where 1i<jn1 \le i < j \le n .

输入格式

The first line of the input contains three integers n,mn, m and kk ( 2n21052 \le n \le 2 \cdot 10^5 , n1mmin(n(n1)2,2105)n - 1 \le m \le \min\Big(\frac{n(n-1)}{2}, 2 \cdot 10^5\Big) , 1kmin(n(n1)2,400)1 \le k \le \min\Big(\frac{n(n-1)}{2}, 400\Big) — the number of vertices in the graph, the number of edges in the graph and the value of kk , correspondingly.

Then mm lines follow, each containing three integers xx , yy and ww ( 1x,yn1 \le x, y \le n , 1w1091 \le w \le 10^9 , xyx \ne y ) denoting an edge between vertices xx and yy of weight ww .

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 xx and yy , there is at most one edge between this pair of vertices in the graph).

输出格式

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

输入输出样例

  • 输入#1

    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
    

    输出#1

    3
    
  • 输入#2

    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
    

    输出#2

    9
    
首页