C. Andryusha and Colored Balloons
题目描述
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!
输入
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.
输出
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.
样例
Examples
inputCopy
3
2 3
1 3
output
3
1 3 2
inputCopy
5
2 3
5 3
4 3
1 3
output
5
1 3 2 5 4
inputCopy
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.
Illustration 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.
Illustration 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.
Illustration for the third sample.
题意
一棵树不能有连续相连的节点染同一种颜色 求出最大的染色个数 并且输出
经典问题 最多的染色数 明显就是一个最大结点的度数+1(节点本身颜色) 那么我们就可以 随便找个节点 跑DFS
注意判断与父节点的颜色问题就可以了
AC代码
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 2e5+10;
int ans, n, col[MAXN], d[MAXN], fa[MAXN];
vector<int> G[MAXN];
void dfs(int u, int pre) {
fa[u] = pre;
int xx = 1;
for(int i = 0; i < G[u].size(); i++) {
int v = G[u][i];
if(v == pre) continue;
while(xx==col[u] || xx==col[fa[u]])
xx++;
// if(xx > ans)
// xx = 1;
// while(xx==col[u] || xx==col[fa[u]])
// xx++;
col[v] = xx++;
dfs(v,u);
}
}
int main() {
cin >> n;
for(int i = 1; i < n; i++) {
int u, v;
cin >> u >> v;
G[u].push_back(v);
G[v].push_back(u);
d[u]++, d[v]++;
}
ans = 3;
for(int i = 1; i <= n; i++)
ans = max(ans , d[i]+1);
col[0] = -1; col[1] = 1;
dfs(1, 0);
cout << ans << endl;
for(int i = 1; i < n; i++)
cout << col[i] << ' ';
cout << col[n] << endl;
return 0;
}