CF1149D.Abandoning Roads
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Codefortia is a small island country located somewhere in the West Pacific. It consists of n settlements connected by m bidirectional gravel roads. Curiously enough, the beliefs of the inhabitants require the time needed to pass each road to be equal either to a or b seconds. It's guaranteed that one can go between any pair of settlements by following a sequence of roads.
Codefortia was recently struck by the financial crisis. Therefore, the king decided to abandon some of the roads so that:
- it will be possible to travel between each pair of cities using the remaining roads only,
- the sum of times required to pass each remaining road will be minimum possible (in other words, remaining roads must form minimum spanning tree, using the time to pass the road as its weight),
- among all the plans minimizing the sum of times above, the time required to travel between the king's residence (in settlement 1 ) and the parliament house (in settlement p ) using the remaining roads only will be minimum possible.
The king, however, forgot where the parliament house was. For each settlement p=1,2,…,n , can you tell what is the minimum time required to travel between the king's residence and the parliament house (located in settlement p ) after some roads are abandoned?
输入格式
The first line of the input contains four integers n , m , a and b ( 2≤n≤70 , n−1≤m≤200 , 1≤a<b≤107 ) — the number of settlements and gravel roads in Codefortia, and two possible travel times. Each of the following lines contains three integers u,v,c ( 1≤u,v≤n , u=v , c∈{a,b} ) denoting a single gravel road between the settlements u and v , which requires c minutes to travel.
You can assume that the road network is connected and has no loops or multiedges.
输出格式
Output a single line containing n integers. The p -th of them should denote the minimum possible time required to travel from 1 to p after the selected roads are abandoned. Note that for each p you can abandon a different set of roads.
输入输出样例
输入#1
5 5 20 25 1 2 25 2 3 25 3 4 20 4 5 20 5 1 20
输出#1
0 25 60 40 20
输入#2
6 7 13 22 1 2 13 2 3 13 1 4 22 3 4 13 4 5 13 5 6 13 6 1 13
输出#2
0 13 26 39 26 13
说明/提示
The minimum possible sum of times required to pass each road in the first example is 85 — exactly one of the roads with passing time 25 must be abandoned. Note that after one of these roads is abandoned, it's now impossible to travel between settlements 1 and 3 in time 50 .