博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Assign the task][dfs序+线段树]
阅读量:5054 次
发布时间:2019-06-12

本文共 3356 字,大约阅读时间需要 11 分钟。

Assign the task

Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 7144    Accepted Submission(s): 2708

Problem Description
There is a company that has N employees(numbered from 1 to N),every employee in the company has a immediate boss (except for the leader of whole company).If you are the immediate boss of someone,that person is your subordinate, and all his subordinates are your subordinates as well. If you are nobody's boss, then you have no subordinates,the employee who has no immediate boss is the leader of whole company.So it means the N employees form a tree.
The company usually assigns some tasks to some employees to finish.When a task is assigned to someone,He/She will assigned it to all his/her subordinates.In other words,the person and all his/her subordinates received a task in the same time. Furthermore,whenever a employee received a task,he/she will stop the current task(if he/she has) and start the new one.
Write a program that will help in figuring out some employee’s current task after the company assign some tasks to some employee.
 

 

Input
The first line contains a single positive integer T( T <= 10 ), indicates the number of test cases.
For each test case:
The first line contains an integer N (N ≤ 50,000) , which is the number of the employees.
The following N - 1 lines each contain two integers u and v, which means the employee v is the immediate boss of employee u(1<=u,v<=N).
The next line contains an integer M (M ≤ 50,000).
The following M lines each contain a message which is either
"C x" which means an inquiry for the current task of employee x
or
"T x y"which means the company assign task y to employee x.
(1<=x<=N,0<=y<=10^9)
 

 

Output
For each test case, print the test case number (beginning with 1) in the first line and then for every inquiry, output the correspond answer per line.
 

 

Sample Input
1 5 4 3 3 2 1 3 5 2 5 C 3 T 2 1 C 3 T 3 2 C 3
 

 

Sample Output
Case #1: -1 1 2
题意:给一棵树,有单点查询和区间更新两种操作
题解:通过dfs序转化为区间问题,使用线段树维护即可
1 #include
2 #include
3 #include
4 using namespace std; 5 #define debug(x) cout<<"["<<#x<<"]"<<" is "<
<
=R){ 46 N[rt].val=c; 47 N[rt].lazy=c; 48 return; 49 } 50 int mid=(L+R)/2; 51 pushdown(rt); 52 if(L1<=mid)update(L,mid,rt<<1,L1,R1,c); 53 if(R1>mid)update(mid+1,R,(rt<<1)|1,L1,R1,c); 54 } 55 int query(int L,int R,int rt,int id){ 56 if(L==R){ 57 return N[rt].val; 58 } 59 int mid=(L+R)/2; 60 pushdown(rt); 61 if(id<=mid)return query(L,mid,rt<<1,id); 62 else return query(mid+1,R,(rt<<1)|1,id); 63 } 64 void adde(int x,int y){ 65 e[cnt].q=y; 66 e[cnt].w=x; 67 e[cnt].nex=head[y]; 68 head[y]=cnt++; 69 } 70 void dfs(int u){ 71 in[u]=++tim; 72 for(int i=head[u];i!=-1;i=e[i].nex){ 73 int v=e[i].w; 74 dfs(v); 75 } 76 out[u]=tim; 77 } 78 int main(){ 79 int t; 80 int case1=0; 81 scanf("%d",&t); 82 while(t--){ 83 scanf("%d",&n); 84 tim=0; 85 cnt=0; 86 for(int i=1;i<=n;i++){f[i]=0;head[i]=-1;} 87 build(1,n,1); 88 for(int i=1;i
View Code

 

转载于:https://www.cnblogs.com/MekakuCityActor/p/10802310.html

你可能感兴趣的文章
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
graphite custom functions
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
oracle连接的三个配置文件(转)
查看>>
Centos下源码安装git
查看>>
[置顶] 细说Cookies
查看>>
[wp7软件]wp7~~新闻资讯,阅读软件下载大全! 集合贴~~~
查看>>
二叉树的遍历问题总结
查看>>
聊天室(C++客户端+Pyhton服务器)_1.框架搭设
查看>>
pytho logging
查看>>
Python内置函数(29)——help
查看>>
对Feature的操作插入添加删除
查看>>
git使用中的问题
查看>>
yaml文件 .yml
查看>>
phpcms 添加自定义表单 留言
查看>>
mysql 优化
查看>>
WCF 配置文件
查看>>
oracle导出/导入 expdp/impdp
查看>>
JAVA 技术类分享(二)
查看>>
Objective - C基础: 第四天 - 10.SEL类型的基本认识
查看>>