直觉,构造。

画了几个样例,发现可以随便构造......先构造根节点的完全图,每个点置为不同的颜色,然后构造儿子节点的完全图......

  1. #include <cstdio>
  2. #include <cmath>
  3. #include <set>
  4. #include <cstring>
  5. #include <algorithm>
  6. #include <vector>
  7. using namespace std;
  8.  
  9. int n,m;
  10. const int maxn = 300010;
  11. vector<int>g[maxn];
  12. vector<int>d[maxn];
  13. int f[maxn];
  14. int ans[maxn],sz;
  15.  
  16. int t[maxn];
  17.  
  18. void dfs(int x)
  19. {
  20. f[x]=1;
  21.  
  22. int now = 1;
  23. for(int i=0;i<d[x].size();i++)
  24. {
  25. int col = d[x][i];
  26. t[ans[col]]=1;
  27. }
  28.  
  29. for(int i=0;i<d[x].size();i++)
  30. {
  31. int col = d[x][i];
  32. if(ans[col]) continue;
  33.  
  34. while(1)
  35. {
  36. if(t[now]) now++;
  37. else
  38. {
  39. ans[col] = now;
  40. t[now]=1;
  41. now++;
  42. break;
  43. }
  44. }
  45.  
  46. }
  47.  
  48. for(int i=0;i<d[x].size();i++)
  49. {
  50. int col = d[x][i];
  51. t[ans[col]]=0;
  52. }
  53.  
  54. for(int i=0;i<g[x].size();i++)
  55. {
  56. int to = g[x][i];
  57. if(f[to]) continue;
  58. dfs(to);
  59. }
  60. }
  61.  
  62. int main()
  63. {
  64. scanf("%d%d",&n,&m);
  65. for(int i=1;i<=n;i++)
  66. {
  67. int sz; scanf("%d",&sz);
  68. while(sz--)
  69. {
  70. int w; scanf("%d",&w);
  71. d[i].push_back(w);
  72. }
  73. }
  74.  
  75. for(int i=1;i<n;i++)
  76. {
  77. int u,v; scanf("%d%d",&u,&v);
  78. g[u].push_back(v);
  79. g[v].push_back(u);
  80. }
  81.  
  82. dfs(1);
  83.  
  84. for(int i=1;i<=m;i++)
  85. {
  86. if(ans[i]==0) ans[i] = 1;
  87. }
  88.  
  89. for(int i=1;i<=m;i++) sz = max(sz,ans[i]);
  90. printf("%d\n",sz);
  91. for(int i=1;i<=m;i++) printf("%d ",ans[i]);
  92. printf("\n");
  93.  
  94. return 0;
  95. }

CodeForces 805E Ice cream coloring的更多相关文章

  1. CodeForces 804C Ice cream coloring

    Ice cream coloring 题解: 这个题目中最关键的一句话是, 把任意一种类型的冰激凌所在的所有节点拿下来之后,这些节点是一个连通图(树). 所以就不会存在多个set+起来之后是一个新的完 ...

  2. 【dfs+理解题意+构造】【待重做】codeforces E. Ice cream coloring

    http://codeforces.com/contest/805/problem/E [题意] 染色数是很好确定,最少染色数是max(si)(最小为1,即使所有的si都为0,这样是单节点树形成的森林 ...

  3. 【Codeforces Round #411 (Div. 1)】Codeforces 804C Ice cream coloring (DFS)

    传送门 分析 这道题做了好长时间,题意就很难理解. 我们注意到这句话Vertices which have the i-th (1 ≤ i ≤ m) type of ice cream form a ...

  4. codeforces 805 E. Ice cream coloring(dfs)

    题目链接:http://codeforces.com/contest/805/problem/E 题意:你有n个节点,这个n个节点构成一棵树.每个节点拥有有si个类型的ice,同一个节点的ice互相连 ...

  5. 【DFS】【贪心】Codeforces Round #411 (Div. 1) C. Ice cream coloring

    对那个树进行dfs,在动态维护那个当前的冰激凌集合的时候,显然某种冰激凌仅会进出集合各一次(因为在树上形成连通块). 于是显然可以对当前的冰激凌集合贪心染色.暴力去维护即可.具体实现看代码.map不必 ...

  6. CodeForces 686A-Free Ice Cream

    题目: 儿童排队领冰激凌,给你两个数n,x分别代表接下来有n行与初始的冰激淋数:接下来n行,每行有一个字符('+'or‘-’),还有一个整数d,+d表示新增的冰激 凌数(由搬运工搬运到此),-d表示儿 ...

  7. Codeforces Round #359 (Div. 2) A. Free Ice Cream 水题

    A. Free Ice Cream 题目连接: http://www.codeforces.com/contest/686/problem/A Description After their adve ...

  8. codeforces 686A A. Free Ice Cream(水题)

    题目链接: A. Free Ice Cream //#include <bits/stdc++.h> #include <vector> #include <iostre ...

  9. 2016-2017 ACM-ICPC CHINA-Final Ice Cream Tower 二分+贪心

    /** 题目:2016-2017 ACM-ICPC CHINA-Final Ice Cream Tower 链接:http://codeforces.com/gym/101194 题意:给n个木块,堆 ...

随机推荐

  1. 子集系列(二) 满足特定要求的子集,例 [LeetCode] Combination, Combination Sum I, II

    引言 既上一篇 子集系列(一) 后,这里我们接着讨论带有附加条件的子集求解方法. 这类题目也是求子集,只不过不是返回所有的自己,而往往是要求返回满足一定要求的子集. 解这种类型的题目,其思路可以在上一 ...

  2. 2017 济南精英班 Day1

    不管怎么掰都是n*m-1 #include<cstdio> using namespace std; int main() { freopen("bpmp.in",&q ...

  3. 维护后面的position sg函数概念,离线+线段 bzoj 3339

    3339: Rmq Problem Time Limit: 20 Sec  Memory Limit: 128 MBSubmit: 1160  Solved: 596[Submit][Status][ ...

  4. 重构改善既有代码设计--重构手法05:Introduce Explaining Variable (引入解释性变量)

      发现:你有一个复杂的表达式. 解决:将该复杂的表达式(或其中的部分)的结果放进一个临时变量,并以此变量名称来解释表达式用途. //重构前 if((platform.toUpperCase().in ...

  5. Html符号

  6. CALayer---iOS-Apple苹果官方文档翻译之CALayer

    CHENYILONG Blog CALayer---iOS-Apple苹果官方文档翻译之CALayer CALayer /*技术博客http://www.cnblogs.com/ChenYilong/ ...

  7. 03.WebView演练-iOS开发Demo(示例程序)源代码

    技术博客http://www.cnblogs.com/ChenYilong/   新浪微博http://weibo.com/luohanchenyilong   //转载请注明出处--本文永久链接:h ...

  8. cookie、localstroage与sessionstroage的一些优缺点

    1.    Cookie 在前端开发中,尽量少用cooie,原因: (1)   cookie限制大小,约4k左右,不适合存储业务数据,尤其是数据量较大的值: (2)   cookie会每次随http请 ...

  9. 1-编程基础及Python环境部署

    目录 1 编程基础 1.1 基本概念 1.2 语言分类 1.3 高级语言的发展 2 程序 3 python的语言介绍 4 Python的解释器 5 Python版本区别 6 Python安装 6.1 ...

  10. 自定义ISO结构

    流程: 1.OS安装 1.1 网卡配置 1.2 密码 1.3 语言 1.4 时区 1.5 分区 1.6 rpms ... 2.软件安装 2.1 BIC Server 2.2 APP Server 2. ...