程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> poj 3321(很好的題目,參看了很多資料才整出來的)

poj 3321(很好的題目,參看了很多資料才整出來的)

編輯:C++入門知識

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.Bkjia.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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved