CF1244D.Paint the Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a tree consisting of nn vertices. A tree is an undirected connected acyclic graph.

Example of a tree.You have to paint each vertex into one of three colors. For each vertex, you know the cost of painting it in every color.

You have to paint the vertices so that any path consisting of exactly three distinct vertices does not contain any vertices with equal colors. In other words, let's consider all triples (x,y,z)(x, y, z) such that xy,yz,xzx \neq y, y \neq z, x \neq z , xx is connected by an edge with yy , and yy is connected by an edge with zz . The colours of xx , yy and zz should be pairwise distinct. Let's call a painting which meets this condition good.

You have to calculate the minimum cost of a good painting and find one of the optimal paintings. If there is no good painting, report about it.

输入格式

The first line contains one integer nn (3n100000)(3 \le n \le 100\,000) — the number of vertices.

The second line contains a sequence of integers c1,1,c1,2,,c1,nc_{1, 1}, c_{1, 2}, \dots, c_{1, n} (1c1,i109)(1 \le c_{1, i} \le 10^{9}) , where c1,ic_{1, i} is the cost of painting the ii -th vertex into the first color.

The third line contains a sequence of integers c2,1,c2,2,,c2,nc_{2, 1}, c_{2, 2}, \dots, c_{2, n} (1c2,i109)(1 \le c_{2, i} \le 10^{9}) , where c2,ic_{2, i} is the cost of painting the ii -th vertex into the second color.

The fourth line contains a sequence of integers c3,1,c3,2,,c3,nc_{3, 1}, c_{3, 2}, \dots, c_{3, n} (1c3,i109)(1 \le c_{3, i} \le 10^{9}) , where c3,ic_{3, i} is the cost of painting the ii -th vertex into the third color.

Then (n1)(n - 1) lines follow, each containing two integers uju_j and vjv_j (1uj,vjn,ujvj)(1 \le u_j, v_j \le n, u_j \neq v_j) — the numbers of vertices connected by the jj -th undirected edge. It is guaranteed that these edges denote a tree.

输出格式

If there is no good painting, print 1-1 .

Otherwise, print the minimum cost of a good painting in the first line. In the second line print nn integers b1,b2,,bnb_1, b_2, \dots, b_n (1bi3)(1 \le b_i \le 3) , where the ii -th integer should denote the color of the ii -th vertex. If there are multiple good paintings with minimum cost, print any of them.

输入输出样例

  • 输入#1

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

    输出#1

    6
    1 3 2 
    
  • 输入#2

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

    输出#2

    -1
    
  • 输入#3

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

    输出#3

    9
    1 3 2 1 3 
    

说明/提示

All vertices should be painted in different colors in the first example. The optimal way to do it is to paint the first vertex into color 11 , the second vertex — into color 33 , and the third vertex — into color 22 . The cost of this painting is 3+2+1=63 + 2 + 1 = 6 .

首页