CSEC-ASTU Competitive Programming Contest 2021 Problem 97: Dark Roads
CSEC-ASTU Competitive Programming Contest 2021 Problem 97: Dark Roads
Input
The input file contains several test cases. Each test case starts with two numbers m and n, the
number of junctions in Byteland and the number of roads in Byteland, respectively. Input is
terminated by m = n = 0. Otherwise, 1 ≤ m ≤ 200000 and m − 1 ≤ n ≤ 200000. Then follow n
integer triples x, y, z specifying that there will be a bidirectional road between x and y with
length z meters (0 ≤ x, y < m and x != y). The graph specified by each test case is connected.
The total length of all roads in each test case is less than 2 31.
Output
For each test case print one line containing the maximum daily amount the government
can save.