CF70E.Information Reform

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Thought it is already the XXI century, the Mass Media isn't very popular in Walrusland. The cities get news from messengers who can only travel along roads. The network of roads in Walrusland is built so that it is possible to get to any city from any other one in exactly one way, and the roads' lengths are equal.

The North Pole governor decided to carry out an information reform. Several cities were decided to be chosen and made regional centers. Maintaining a region center takes kk fishlars (which is a local currency) per year. It is assumed that a regional center always has information on the latest news.

For every city which is not a regional center, it was decided to appoint a regional center which will be responsible for keeping this city informed. In that case the maintenance costs will be equal to dlend_{len} fishlars per year, where lenlen is the distance from a city to the corresponding regional center, measured in the number of roads along which one needs to go.

Your task is to minimize the costs to carry out the reform.

输入格式

The first line contains two given numbers nn and kk ( 1<=n<=180,1<=k<=1051<=n<=180,1<=k<=10^{5} ).

The second line contains n1n-1 integers did_{i} , numbered starting with 1 ( di<=di+1,0<=di<=105d_{i}<=d_{i+1},0<=d_{i}<=10^{5} ).

Next n1n-1 lines contain the pairs of cities connected by a road.

输出格式

On the first line print the minimum number of fishlars needed for a year's maintenance. On the second line print nn numbers, where the ii -th number will represent the number of the regional center, appointed to the ii -th city. If the ii -th city is a regional center itself, then you should print number ii .

If there are several solutions to that problem, print any of them.

输入输出样例

  • 输入#1

    8 10
    2 5 9 11 15 19 20
    1 4
    1 3
    1 7
    4 6
    2 8
    2 3
    3 5
    

    输出#1

    38
    3 3 3 4 3 4 3 3 
首页