CodeForces - 780C Andryusha and Colored Balloons(思路,bfs)

描述

Andryusha goes through a park each day. The squares and paths between them look boring to Andryusha, so he decided to decorate them.

The park consists of n squares connected with (n - 1) bidirectional paths in such a way that any square is reachable from any other using these paths. Andryusha decided to hang a colored balloon at each of the squares. The baloons’ colors are described by positive integers, starting from 1. In order to make the park varicolored, Andryusha wants to choose the colors in a special way. More precisely, he wants to use such colors that if a, b and c are distinct squares that a and b have a direct path between them, and b and c have a direct path between them, then balloon colors on these three squares are distinct.

Andryusha wants to use as little different colors as possible. Help him to choose the colors!

Input

The first line contains single integer n (3 ≤ n ≤ 2·105) — the number of squares in the park.

Each of the next (n - 1) lines contains two integers x and y (1 ≤ x, y ≤ n) — the indices of two squares directly connected by a path.

It is guaranteed that any square is reachable from any other using the paths.

Output

In the first line print single integer k — the minimum number of colors Andryusha has to use.

In the second line print n integers, the i-th of them should be equal to the balloon color on the i-th square. Each of these numbers should be within range from 1 to k.

input

3
2 3
1 3

output

3
1 3 2 

input

5
2 3
5 3
4 3
1 3

output

5
1 3 2 5 4 

input

5
2 1
3 2
4 3
5 4

output

3
1 2 3 1 2 

Note

In the first sample the park consists of three squares: 1 → 3 → 2. Thus, the balloon colors have to be distinct.

imgIllustration for the first sample.

In the second example there are following triples of consequently connected squares:

  • 1 → 3 → 2
  • 1 → 3 → 4
  • 1 → 3 → 5
  • 2 → 3 → 4
  • 2 → 3 → 5
  • 4 → 3 → 5

We can see that each pair of squares is encountered in some triple, so all colors have to be distinct.

imgIllustration for the second sample.

In the third example there are following triples:

  • 1 → 2 → 3
  • 2 → 3 → 4
  • 3 → 4 → 5

We can see that one or two colors is not enough, but there is an answer that uses three colors only.

imgIllustration for the third sample.

思路

一棵樹有n個節點,你需要給它的所有節點圖上顏色。相鄰三個節點不能有相同顏色,問最少需要多少種顏色。
相鄰三個節點的意思是 節點x1與x2相鄰,x2與x3相鄰,那麼x1與x3也相鄰, x1,x2,x3顏色各不相同

我們容易推得,顏色的個數就是所有點的度數最大的度數+1.

使用bfs,每次從1開始塗色,把自己的父親,和祖父標記一下,如果是自己的父親或者祖父就換顏色,直到不是爲止.

代碼

#include <bits/stdc++.h>
using namespace std;
const int N = 2e5 + 10;
vector<int> e[N];
int vis[N], color[N], in[N], tot = 0;
int fmax(int a, int b, int c)
{
    return max(max(a, b), c);
}
void bfs(int u, int fa)
{

    int num = 1;
    for (auto v : e[u])
    {
        if (v == fa)
            continue;
        while (num == color[u] || num == color[fa])
            num++;
        color[v] = num++;
    }
    for (auto v : e[u])
    {
        if (v == fa)
            continue;
        bfs(v, u);
    }
}
int main()
{
    int n, u, v;
    scanf("%d", &n);
    for (int i = 1; i <= n - 1; i++)
    {
        scanf("%d%d", &u, &v);
        in[u]++, in[v]++;
        tot = fmax(tot, in[u], in[v]);
        e[u].push_back(v);
        e[v].push_back(u);
    }
    color[1] = 1;
    bfs(1, 0);
    tot++;
    printf("%d\n", tot);
    for (int i = 1; i <= n; i++)
        printf("%d ", color[i]);
    puts("");
    return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章