记录编号 435779 评测结果 AAAAAAAAAA
题目名称 [HEOI 2016] 树 最终得分 100
用户昵称 Gravatarxzz_233 是否通过 通过
代码语言 C++ 运行时间 0.152 s
提交时间 2017-08-10 11:39:30 内存使用 1.81 MiB
显示代码纯文本
  1. //暴力出奇迹!!!!!
  2. #include<cstdio>
  3. struct node {
  4. int brother,firstson,ans;
  5. bool T;
  6. } dots[100001];
  7. inline int gi() {
  8. int x=0;
  9. char c=getchar();
  10. while(c<'0' || c>'9')c=getchar();
  11. while(c>='0' && c<='9')x=x*10+c-'0',c=getchar();
  12. return x;
  13. }
  14. inline void dfs(int a,int Ans) {
  15. dots[a].ans=Ans;
  16. for(int i=dots[a].firstson; i; i=dots[i].brother)
  17. if(!dots[i].T)dfs(i,Ans);
  18. }
  19. int main() {
  20. freopen("heoi2016_tree.in","r",stdin);
  21. freopen("heoi2016_tree.out","w",stdout);
  22. int n=gi(),dt1,dt2,q=gi();
  23. char ch;
  24. for(int i=1; i<=n; i++)
  25. dots[i].ans=1;
  26. dots[1].T=1;
  27. for(int i=1; i<n; i++) {
  28. dt1=gi();
  29. dt2=gi();
  30. dots[dt2].brother=dots[dt1].firstson;
  31. dots[dt1].firstson=dt2;
  32. }
  33. while(q--) {
  34. ch=getchar();
  35. while(ch!='Q'&&ch!='C')ch=getchar();
  36. dt1=gi();
  37. if(ch=='Q')printf("%d\n",dots[dt1].ans);
  38. else {
  39. dots[dt1].T=1;
  40. dfs(dt1,dt1);
  41. }
  42. }
  43. return 0;
  44. }