CF1149D.Abandoning Roads

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Codefortia is a small island country located somewhere in the West Pacific. It consists of nn settlements connected by mm bidirectional gravel roads. Curiously enough, the beliefs of the inhabitants require the time needed to pass each road to be equal either to aa or bb 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 11 ) and the parliament house (in settlement pp ) using the remaining roads only will be minimum possible.

The king, however, forgot where the parliament house was. For each settlement p=1,2,,np = 1, 2, \dots, n , can you tell what is the minimum time required to travel between the king's residence and the parliament house (located in settlement pp ) after some roads are abandoned?

输入格式

The first line of the input contains four integers nn , mm , aa and bb ( 2n702 \leq n \leq 70 , n1m200n - 1 \leq m \leq 200 , 1a<b1071 \leq a < b \leq 10^7 ) — the number of settlements and gravel roads in Codefortia, and two possible travel times. Each of the following lines contains three integers u,v,cu, v, c ( 1u,vn1 \leq u, v \leq n , uvu \neq v , c{a,b}c \in \{a, b\} ) denoting a single gravel road between the settlements uu and vv , which requires cc minutes to travel.

You can assume that the road network is connected and has no loops or multiedges.

输出格式

Output a single line containing nn integers. The pp -th of them should denote the minimum possible time required to travel from 11 to pp after the selected roads are abandoned. Note that for each pp 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 8585 — exactly one of the roads with passing time 2525 must be abandoned. Note that after one of these roads is abandoned, it's now impossible to travel between settlements 11 and 33 in time 5050 .

首页