poj3321-Apple Tree(DFS序+树状数组)
| Time Limit: 2000MS | Memory Limit: 65536K | |
| Total Submissions: 36442 | Accepted: 10894 |
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?

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
Sample Input
3
1 2
1 3
3
Q 1
C 2
Q 1
Sample Output
3
2 题意:给出了一棵树,树有很多的树杈,标号分别为1-n,如上图所示,初始状态时,每个的树杈位置都有一个苹果,有m个操作,操作(c num)是如果num号树杈有苹果,就摘掉,否则这个树杈上就会长出苹果;操作(Q num)表示求以第num个树杈为根的子树共有多少苹果。
思路:这题可以用dfs序给树杈重新标号,使得每一棵子树的序号都是连续的,然后就将树状结构转换为了线性结构,再使用树状数组求和就是求子树的所有苹果数了。 DFS序粗讲:所谓dfs序就是一棵树上每个节点在dfs先序遍历中的进出栈的时间序列。如下面这棵树:
它的dfs序就是:

上面的遍历结果中每个点都出现两次,因为一次是进栈,一次出栈。
我们可以发现,以每个节点作为根节点的子树,这棵子树中的所有节点在dfs序中都处于根节点中间。
例如:以B为根节点的子树,有BEFK四个点,而在dfs序中,这四个点的遍历顺序是相连的,为BEEFKKFB,EFK作为子节点,遍历的顺序在B进栈之后,而又在B出栈之前。验证可以发现,每一个节点都满足这一性值。
所以,我们按照dfs序重新给各个节点编号,每个节点记录两个值,一个是进栈的时间,一个是出栈的时间。如下图:

这棵树按dfs先序遍历之后获得了如上图的编号,每个点都有其进栈的时间和出栈的时间,两者形成了一个区间,图中每个点的进栈时间都不同,我们就以进栈时间点作为新的编号(根据写法不同也可以是出栈时间各不同)。我们可以发现,若以某个节点作为根节点,那么它的子树上的所有点的的编号都在根节点的区间范围内。例如上图中的点4,它的新编号为5,区间5-7,它的两个子节点编号分别为6,7;节点2的编号为2,区间为2-3,子节点新编号为3(旧编号为5)。
知道这一点之后,我们就可以来求以某个节点为根的子树的值的和了。比如求上图中4号节点为根的子树的和,则就是求新编号区域为5-7的和,这是连续的,用树状数组就行了,也即是sum(7)-sum(4)。
参考博客:https://blog.csdn.net/qq_39670434/article/details/78425125
具体操作看代码:
#include<iostream>
#include<cstring>
#include<cstdio>
#include<string>
#include<cmath>
#include<algorithm>
#include<stack>
#include<climits>
#include<map>
#include<queue>
#define eps 1e-7
#define ll long long
#define inf 0x3f3f3f3f
#define pi 3.141592653589793238462643383279
using namespace std;
const int MAXN = 1e5+; struct Edge{
int next,to;
}edge[MAXN];
int head[MAXN],n,m,cnt,in[MAXN],out[MAXN],visit[MAXN],c[MAXN]; void ADD(int beg,int end) //链式前向心建树
{
edge[cnt].next = head[beg];
edge[cnt].to = end;
head[beg] = cnt++;
} void DFS(int u) //获得dfs序
{
visit[u] = ; //标记节点已经被范围(此题可以没有)
in[u] = ++cnt; //记录节点u进栈的时间
for(int i=head[u]; i!=-; i=edge[i].next) //遍历节点u所有的子节点
{
int j = edge[i].to;
if(!visit[j]) DFS(j); //搜索子节点
}
out[u] = cnt; //记录节点u出栈的时间
} int lowBit(int x)
{
return x&(-x);
} void add(int x,int num)
{
for(int i=x; i<=n; i+=lowBit(i))
c[i] += num;
} int query(int x)
{
int ans = ;
for(int i=x; i>; i-=lowBit(i))
ans += c[i];
return ans;
} int main()
{
int t;
char ques[];
while(scanf("%d",&n)!=EOF)
{
fill(head,head+n+,-);
fill(visit,visit+n+,);
cnt = ; int beg,end;
for(int i=; i<n-; ++i)
{
scanf("%d%d",&beg,&end);
ADD(beg,end);
}
cnt = ;
DFS(); //dfs获得新的编号 c[] = ;
for(int i=; i<=n; ++i) add(i,); //树状数组给每个节点赋值,因为题目初始状态是每个节点都有苹果 cin>>m;
while(m--)
{
scanf("%s%d",ques,&t);
if(ques[] == 'C')
{
if(visit[t] == ) //判断此节点是否有苹果
{ add(in[t],-); //有苹果就减去
visit[t] = ; //然后标记为没有苹果
}
else
{
add(in[t],); //没有苹果就加上
visit[t] = ; //然后标记为有
}
}
else
{
int ans = query(out[t]) - query(in[t]-); //计算子树的苹果数
printf("%d\n",ans);
}
}
}
return ;
}
poj3321-Apple Tree(DFS序+树状数组)的更多相关文章
- [poj3321]Apple Tree(dfs序+树状数组)
Apple Tree Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 26762 Accepted: 7947 Descr ...
- POJ 3321 Apple Tree DFS序 + 树状数组
多次修改一棵树节点的值,或者询问当前这个节点的子树所有节点权值总和. 首先预处理出DFS序L[i]和R[i] 把问题转化为区间查询总和问题.单点修改,区间查询,树状数组即可. 注意修改的时候也要按照d ...
- Codeforces Round #225 (Div. 1) C. Propagating tree dfs序+树状数组
C. Propagating tree Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/383/p ...
- Codeforces Round #225 (Div. 1) C. Propagating tree dfs序+ 树状数组或线段树
C. Propagating tree Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/383/p ...
- POJ3321Apple Tree Dfs序 树状数组
出自——博客园-zhouzhendong ~去博客园看该题解~ 题目 POJ3321 Apple Tree 题意概括 有一颗01树,以结点1为树根,一开始所有的结点权值都是1,有两种操作: 1.改变其 ...
- [Split The Tree][dfs序+树状数组求区间数的种数]
Split The Tree 时间限制: 1 Sec 内存限制: 128 MB提交: 46 解决: 11[提交] [状态] [讨论版] [命题人:admin] 题目描述 You are given ...
- Codeforces Round #381 (Div. 2) D. Alyona and a tree dfs序+树状数组
D. Alyona and a tree time limit per test 2 seconds memory limit per test 256 megabytes input standar ...
- POJ 3321:Apple Tree + HDU 3887:Counting Offspring(DFS序+树状数组)
http://poj.org/problem?id=3321 http://acm.hdu.edu.cn/showproblem.php?pid=3887 POJ 3321: 题意:给出一棵根节点为1 ...
- HDU 5293 Tree chain problem 树形dp+dfs序+树状数组+LCA
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5293 题意: 给你一些链,每条链都有自己的价值,求不相交不重合的链能够组成的最大价值. 题解: 树形 ...
- HDU 5293 Annoying problem 树形dp dfs序 树状数组 lca
Annoying problem 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5293 Description Coco has a tree, w ...
随机推荐
- 更新日志(建议升级到2017.1.18a) && 更新程序的方法
更新程序的步骤: 1,在控制面板里点击备份当前数据库文件到磁盘,把当天获取的信息从内存写到磁盘/存储卡.2,下载最新版的源码 wget -O "infopi.zip" " ...
- c++实现贪食蛇
今天老师布置了作业 让我们观察c++实现贪食蛇的代码 #include<windows.h> #include<time.h> #include<stdlib.h> ...
- express + mongodb 搭建一个简易网站 (三)
express + mongodb 搭建一个简易网站 (三) 前面已经实现了基本的网站功能,现在我们就开始开搞一个完整的网站,现在整个网站的UI就是下面的这个样子. 我们网站的样子就照着这个来吧. 1 ...
- java script 模拟鼠标事件
try { var selector1 = "._3-8y:first-child"; var evt = document.createEvent("MouseEven ...
- centos7 opencc 安装
繁体字转换:http://xh.5156edu.com/jtof.php 转换的有问题http://tool.lu/zhconvert/ git网址:https://github.com/BYVoid ...
- easyui input未设id导致的问题
今天又踩了一个坑,大致是没有给input设id,使用类选择器绑定easyui控件,然后使用name设值,现在值设进去后界面没有显示. 做的界面部分截图如图: 点击下面两个橙色的按钮,通过调用下面的方法 ...
- debug-stripped.ap_' specified for property 'resourceFile' does not exist.(转载)
1.错误描述 更新Android Studio到2.0版本后,出现了编译失败的问题,我clean project然后重新编译还是出现抑郁的问题,问题具体描述如下所示: Error:A problem ...
- Linux 软件 安装到 /usr,/usr/local/ 还是 /opt 目录
Linux 的软件安装目录是也是有讲究的,理解这一点,在对系统管理是有益的 /usr:系统级的目录,可以理解为C:/Windows/,/usr/lib理解为C:/Windows/System32./u ...
- Mybatis的分页插件PageHelp:Page对象中的pageSize等属性无法序列化,无法转换为json字符串
Page<User> page = new Page<>(); User user = new User(); user.setAge(20); ...
- 全屏API
by zhangxinxu from http://www.zhangxinxu.com本文地址:http://www.zhangxinxu.com/wordpress/?p=2679 二.相关文章以 ...
