博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
H:有趣的试剂(1317)
阅读量:5083 次
发布时间:2019-06-13

本文共 836 字,大约阅读时间需要 2 分钟。

题目链接:http://acm.xidian.edu.cn/problem.php?id=1317

原题链接:http://codeforces.com/problemset/problem/902/B(看不懂题目的,可以去看原题,下面有样例说明)

  核心就是他是一棵树,你总是要从上往下染;

1 #include
2 3 int n,ans; 4 int father[10004]; 5 int clour[10004]; 6 int main() 7 { 8 int T; 9 scanf("%d",&T);10 while(T--)11 {12 ans = 1;13 scanf("%d",&n);14 for(int i = 2;i <= n;i++)15 scanf("%d",&father[i]);16 17 for(int i = 1;i <= n;i++)18 scanf("%d",&clour[i]);19 20 for(int i = 2;i <= n;i++)21 {22 if(clour[i] != clour[father[i]])23 ans++;24 }25 printf("%d\n",ans);26 }27 return 0;28 }

 

  别人说明:https://blog.csdn.net/m0_37809890/article/details/78856185

转载于:https://www.cnblogs.com/Dicer/p/9114575.html

你可能感兴趣的文章
新学期,对软件工程的看法
查看>>
SpringMVC 的 Controller 返回各种视图的处理方式
查看>>
Pediatric Dentists For Everyone Of Kids
查看>>
Asp.Net MVC 入门
查看>>
JSP九大内置对象
查看>>
LeetCode Medium Hashtable总结
查看>>
android application plugins framework
查看>>
二维码快速扫描工具
查看>>
python文本处理.python版本2.7.3
查看>>
C# 删除html标签,只保留文字
查看>>
ie6 支持fixed
查看>>
django的模版中访问数组
查看>>
优秀有价值的博客收藏列表(持续更新)
查看>>
table边框设置
查看>>
MySQL 1071错误解决办法
查看>>
div+css(2)
查看>>
ERwin DM Reverse Engineer 逆向工程介绍
查看>>
浅析数据生命周期
查看>>
用Python进行有进度条的π计算
查看>>
leetcode[167]Two Sum II - Input array is sorted
查看>>