码迷,mamicode.com
首页 > 其他好文 > 详细

COGS——C2274. [HEOI 2016] tree

时间:2017-07-18 00:11:57      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:ios   ref   时间   nbsp   targe   color   内存   分享   tree   

http://www.cogs.pro/cogs/problem/problem.php?pid=2274

★☆   输入文件:heoi2016_tree.in   输出文件:heoi2016_tree.out   简单对比
时间限制:1 s   内存限制:128 MB

技术分享

技术分享

技术分享

 

福利题?

 1 #include <algorithm>
 2 #include <iostream>
 3 #include <cstdio>
 4 
 5 using namespace std;
 6 
 7 const int N(1e6+15);
 8 int n,q,u,v;
 9 
10 int mark[N],dad[N];
11 int Get_grandfa(int x,int y)
12 {
13     for(;!mark[x];)
14         x=dad[x];
15     return x;
16 }
17 
18 int main()
19 {
20     freopen("heoi2016_tree.in","r",stdin);
21     freopen("heoi2016_tree.out","w",stdout);
22     scanf("%d%d",&n,&q);
23     for(int i=1;i<n;i++)
24         scanf("%d%d",&u,&v),dad[v]=u;
25     mark[1]=1;
26     for(char op;q--;)
27     {
28         cin>>op>>v;
29         if(op==C) mark[v]=1;
30         else printf("%d\n",Get_grandfa(v,1));
31     }
32     return 0;
33 }

 

COGS——C2274. [HEOI 2016] tree

标签:ios   ref   时间   nbsp   targe   color   内存   分享   tree   

原文地址:http://www.cnblogs.com/Shy-key/p/7197477.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!