CF125E.MST Company

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The MST (Meaningless State Team) company won another tender for an important state reform in Berland.

There are nn cities in Berland, some pairs of the cities are connected by roads. Each road has its price. One can move along any road in any direction. The MST team should carry out the repair works on some set of roads such that one can get from any city to any other one moving only along the repaired roads. Moreover, this set should contain exactly kk capital roads (that is, the roads that start or finish in the capital). The number of the capital is 1.

As the budget has already been approved, the MST Company will profit by finding the set with minimum lengths of roads.

输入格式

The first input line contains three integers n,m,kn,m,k ( 1<=n<=5000;0<=m<=10^{5};0<=k<5000 ), where nn is the number of cities in the country, mm is the number of roads in the country, kk is the number of capital roads in the required set. Then mm lines enumerate the roads in question. Each road is specified by three numbers ai,bi,wia_{i},b_{i},w_{i} ( 1<=ai,bi<=n1<=a_{i},b_{i}<=n ; 1<=w<=1051<=w<=10^{5} ), where ai,bia_{i},b_{i} are the numbers of cities linked by a road and wiw_{i} is its length.

Between each pair of cities no more than one road exists. There are no roads that start and finish in one city. The capital's number is 1.

输出格式

In the first line print the number of roads in the required set. The second line should contain the numbers of roads included in the sought set. If the sought set does not exist, print -1.

输入输出样例

  • 输入#1

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

    输出#1

    3
    1 5 2 
首页