CodeForces 780C Andryusha and Colored BalloonsDFS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 780C Andryusha and Colored BalloonsDFS相关的知识,希望对你有一定的参考价值。


题目链接:​​http://codeforces.com/problemset/problem/780/C​​​
题意:给你一棵树,让你用最少的颜色给这棵树染色,相邻节点的颜色不同
解析:DFS染色

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <iostream>
#include <vector>
#include <queue>
#include <set>
using namespace std;
const int maxn = 1e6+100;
vector<int>G[maxn];
int vis[maxn];
void dfs(int now,int last)

int cnt = 1;
for(int i=0;i<G[now].size();i++)

if(G[now][i]!=last)

while(cnt==vis[now]||cnt==vis[last])
cnt++;
vis[G[now][i]] = cnt++;


for(int i=0;i<G[now].size();i++)

if(G[now][i]!=last)
dfs(G[now][i],now);


int main()

int n;
scanf("%d",&n);
for(int i=0;i<=n;i++)
G[i].clear();
for(int i=0;i<n-1;i++)

int x,y;
scanf("%d %d",&x,&y);
G[y].push_back(x);
G[x].push_back(y);

memset(vis,0,sizeof(vis));
vis[1] = 1;
dfs(1,0);
int ans = 0;
for(int i=1;i<=n;i++)
ans = max(ans,vis[i]);
printf("%d\\n",ans);
for(int i=1;i<=n;i++)

if(i)printf(" ");
printf("%d",vis[i]);

puts("");
return 0;


以上是关于CodeForces 780C Andryusha and Colored BalloonsDFS的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces 780G Andryusha and Nervous Barriers 线段树套set || 线段树套单调栈

模型“用户”的路径“_id”中值“586cc8b3ea780c071bbe2469”的值“586cc8b3ea780c071bbe2469”转换为 ObjectId 失败

CF781A Andryusha and Colored Balloons

codeforces上怎么看测试数据

如何看codeforces做了多少题

codeforces上怎么看测试数据