-
Notifications
You must be signed in to change notification settings - Fork 4
/
Andryusha and Colored Balloons.cpp
114 lines (96 loc) · 2.48 KB
/
Andryusha and Colored Balloons.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#include<bits/stdc++.h>
using namespace std ;
typedef double D ;
typedef long long ll ;
typedef long double ld ;
typedef unsigned int ui ;
typedef unsigned long long ull ;
# define F first
# define S second
# define R return
# define C continue
# define pb push_back
# define pf push_front
# define mp make_pair
# define vi vector <int>
# define vb vector <bool>
# define vll vector <ll>
# define vs vector <string>
# define vvi vector < vector < int > >
# define vvb vector < vector < bool > >
# define vvc vector < vector < char > >
# define vvll vector < vector < ll > >
# define vvd vector < vector < D > >
# define vvld vector < vector < ld > >
# define pii pair < int , int >
# define pll pair < ll , ll >
# define pld pair < ld , ld >
# define pDD pair < D , D >
# define vpld vector < pld >
# define vpii vector < pii >
# define vpll vector < pll >
# define vpDD vector < pDD >
# define vvpii vector < vector < pii > >
# define all(v) (v).begin() , (v).end()
# define allrev(v) (v).rbegin() , (v).rend()
# define allcomp(v) v.begin() , v.end() , comp
# define allrevcomp(v) v.rbegin() , v.rend() , comp
# define Fi(i,L,R) for (int i = L ; i <= R ; i++)
# define Fd(i,R,L) for (int i = R ; i >= L ; i--)
# define FAST ios_base :: sync_with_stdio (false) ; cin.tie(0) ; cout.tie(0)
# define dist(a,b,p,q) sqrt((p-a)*(p-a) + (q-b)*(q-b))
const ll MOD = 1e9 + 7 ;
const int infi = INT_MAX ;
const ll infll = LLONG_MAX ;
const ld PI = 3.1415926535897932384626 ;
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
const int N = 211111 ;
int n ;
vi color (N , -1) ;
vi adj [N] ;
int k = 1 ;
void dfs (int node , int par)
{
int cur = 1 ;
for (auto i : adj[node])
{
if (i != par) // already visited(parent) ;
{
while (cur == color[node] || (color[par] == cur && par != -1))
++cur ;
color[i] = cur ;
++cur ;
dfs(i , node) ;
}
}
k = max(k , cur - 1) ;
}
void solve (int test_case)
{
cin >> n ;
for (int i = 0 ; i < n-1 ; ++i)
{
int a , b ;
cin >> a >> b ;
--a ;
--b ;
adj[a].pb(b) ;
adj[b].pb(a) ;
}
color[0] = 1 ;
dfs(0 , -1) ;
cout << k << '\n' ;
for (int i = 0 ; i < n ; ++i)
cout << color[i] << ' ' ;
}
int main()
{
//freopen ("input.txt","r",stdin) ;
//freopen ("output.txt","w",stdout) ;
FAST ;
int tc = 1 ;
// cin >> tc ;
while (tc--)
solve (tc) ;
return 0 ;
}