设为首页 加入收藏

TOP

poj 3321(很好的题目,参看了很多资料才整出来的)
2015-07-20 17:55:34 来源: 作者: 【 】 浏览:1
Tags:poj 3321 题目 参看 资料 出来
Apple Tree
Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 18982 Accepted: 5769

Description

There is an apple tree outside of kaka's house. Every autumn, a lot of apples will grow in the tree. Kaka likes apple very much, so he has been carefully nurturing the big apple tree.

The tree has N forks which are connected by branches. Kaka numbers the forks by 1 to N and the root is always numbered by 1. Apples will grow on the forks and two apple won't grow on the same fork. kaka wants to know how many apples are there in a sub-tree, for his study of the produce ability of the apple tree.

The trouble is that a new apple may grow on an empty fork some time and kaka may pick an apple from the tree for his dessert. Can you help kaka?

\

<??http://www.2cto.com/kf/ware/vc/" target="_blank" class="keylink">vcD4KCjxwIGNsYXNzPQ=="pst">Input

The first line contains an integer N (N ≤ 100,000) , which is the number of the forks in the tree.
The following N - 1 lines each contain two integers u and v, which means fork u and fork v are connected by a branch.
The next line contains an integer M (M ≤ 100,000).
The following M lines each contain a message which is either
"C x" which means the existence of the apple on fork x has been changed. i.e. if there is an apple on the fork, then Kaka pick it; otherwise a new apple has grown on the empty fork.
or
"Q x" which means an inquiry for the number of apples in the sub-tree above the fork x, including the apple (if exists) on the fork x
Note the tree is full of apples at the beginning

Output

For every inquiry, output the correspond answer per line.

Sample Input

3
1 2
1 3
3
Q 1
C 2
Q 1

Sample Output

3
2

Source

POJ Monthly--2007.08.05, Huang, Jinsong

超时代码(数组链表):

#include
  
   
#include
   
     #include
    
      #include
     
       using namespace std; int n,cnt,k; int vis[100100],be[100100],en[100100],c[100100]; int to[100100],next[100100],head[100100]; //数组链表 void add(int x,int y){ to[++cnt]=y; next[cnt]=head[x]; head[x]=cnt; } void dfs(int cur){ be[cur]=++k; vis[cur]=1; for (int p=head[cur];p;p=next[p]){ if(!vis[to[p]]) dfs(to[p]); } en[cur]=k; } int lowbit(int x){ return x&-x; } void change(int x,int val){ while(x<=n){ c[x]+=val; x+=lowbit(x); } } int sum(int x){ int ret=0; while(x>=1){ ret+=c[x]; x-=lowbit(x); } return ret; } int main(){ scanf("%d",&n); cnt=k=0; for(int i=1;i
      
       


AC代码(vetor应用):

#include
        
         
#include
         
           #include
          
            #include
           
             using namespace std; int n,cnt,k; int vis[100100],be[100100],en[100100],c[100100]; //int to[100100],next[100100],head[100100]; typedef vector 
            
              INT; vector 
             
               v(100100); //void add(int x,int y){ // to[++cnt]=y; // next[cnt]=head[x]; // head[x]=cnt; //} void dfs(int cur){ be[cur]=++k; vis[cur]=1; for (int p=0;p
              
               =1){ ret+=c[x]; x-=lowbit(x); } return ret; } int main(){ scanf("%d",&n); cnt=k=0; for(int i=1;i
               
                

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇hdu 4941 Magical Forest (map) 下一篇C++MFC编程笔记day09 MF界面控件..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容: