HDU 6162 Ch’s gift
There are n cities in the country and (n-1) bi-directional roads. Each city can be reached from any other city. In the ith city, there is a specialty of price ci Cui could buy as a gift. Cui buy at most 1 gift in a city. Cui starts his trip from city s and his girl friend is in city t. As mentioned above, Cui is so hurry that he will choose the quickest way to his girl friend(in other words, he won't pass a city twice) and of course, buy as many as gifts as possible. Now he wants to know, how much money does he need to prepare for all the gifts?
InputThere are multiple cases.
For each case:
The first line contains tow integers n,m(1≤n,m≤10^5), representing the number of cities and the number of situations.
The second line contains n integers c1,c2,...,cn(1≤ci≤10^9), indicating the price of city i's specialty.
Then n-1 lines follows. Each line has two integers x,y(1≤x,y≤n), meaning there is road between city x and city y.
Next m line follows. In each line there are four integers s,t,a,b(1≤s,t≤n;1≤a≤b≤10^9), which indicates start city, end city, lower bound of the price, upper bound of the price, respectively, as the exact meaning mentioned in the description above
OutputOutput m space-separated integers in one line, and the ith number should be the answer to the ith situation.Sample Input
5 3
1 2 1 3 2
1 2
2 4
3 1
2 5
4 5 1 3
1 1 1 1
3 5 2 3
Sample Output
7 1 4 思路:
算是比较裸的树链剖分+线段树吧,这道题要求树上任意两点间在区间ab内的值
首先先用树链剖分把这棵树划分轻重链,实际上也是相当于通过类似hash的方式将树形结构变成线形结构
然后就可以用线段树处理了,只要求出在这个区间内的数就行了,直接求出<=b的和<a的做下差就可以了 至于代码的话,树链剖分主要是两个dfs,第一个统计父亲节点fa 当前节点深度deep 子树大小sz ,并在遍历时求出当前节点的重儿子
第二个求出对各个结点的top,对于重儿子来说,top就是沿其所在重链走到顶端的点的位置,对于轻儿子,我们把top定为其本身。
然后对每个结点dfs时先遍历到它的重儿子后遍历轻儿子 最后重链上的点映射到一维数组里得到一串连续的区间,然后就可以直接套线段树了处理了
时间复杂度差不多是是O(nlogn) 实现代码:
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 1e5+;
vector<int> vt[maxn];
int n,q,tot;
int sz[maxn],deep[maxn],fa[maxn],son[maxn],top[maxn],tree[maxn],pre[maxn];
ll ansl[maxn],ansr[maxn],sum[maxn*];
struct node1{
int x,id;
bool operator < (const node1 &a)const{
return x<a.x;
}
}a[maxn]; struct node2{
int x,y,a,b,id;
}op[maxn]; bool cmp1(const node2 &a,const node2 &b){
return a.a<b.a;
} bool cmp2(const node2 &a,const node2 &b){
return a.b<b.b;
} void dfs1(int u,int pre,int d){
deep[u] = d; sz[u] = ; fa[u] = pre;
int len = vt[u].size();
for(int i=;i<len;i++){
int v = vt[u][i];
if(v==pre) continue;
dfs1(v,u,d+);
sz[u] += sz[v];
if(!son[v]||sz[v]>sz[son[u]])
son[u] = v;
}
} void dfs2(int u, int tp){
top[u] = tp;
tree[u] = ++tot;
pre[tree[u]] = u;
if(!son[u]) return ;
dfs2(son[u], tp);
for(int i = , len = vt[u].size(); i < len; i++){
int v = vt[u][i];
if(v != son[u] && v != fa[u])
dfs2(v, v);
}
} void push_up(int rt){
sum[rt] = sum[rt<<] + sum[rt<<|];
} void update(int rt,int l,int r,int pos,int val){
if(l==r){
sum[rt]+=val; return;
}
int m = (l+r)>>;
if(pos <= m) update(rt<<,l,m,pos,val);
else update(rt<<|,m+,r,pos,val);
push_up(rt);
} ll query(int rt,int l,int r,int L,int R){
if(L<=l&&R>=r) return sum[rt];
int m = (l+r)>>;
ll ret = ;
if(L<=m) ret += query(rt<<,l,m,L,R);
if(m<R) ret += query(rt<<|,m+,r,L,R);
return ret;
} ll ask(int x,int y){ //求两结点路径上的权值和
int fx = top[x],fy = top[y];
ll ans = ;
while(fx!=fy){
if(deep[fx]<deep[fy]) swap(fx,fy),swap(x,y);
ans += query(,,n,tree[fx],tree[x]);
x = fa[fx]; fx = top[x];
}
ans += (deep[x]>deep[y])?query(,,n,tree[y],tree[x]):query(,,n,tree[x],tree[y]);
return ans;
}
int main()
{
ios::sync_with_stdio();
cin.tie();
cout.tie();
while(cin>>n>>q){
tot = ;
memset(son, , sizeof(son));
memset(sz, , sizeof(sz));
for(int i = ; i <= n; i++)
vt[i].clear();
for(int i=;i<=n;i++){
cin>>a[i].x;a[i].id=i;
}
for(int i=;i<n;i++){
int u,v;
cin>>u>>v;
vt[u].push_back(v);vt[v].push_back(u);
}
dfs1(,,); dfs2(,);
for(int i=;i<=q;i++){
cin>>op[i].x>>op[i].y>>op[i].a>>op[i].b; op[i].id = i;
}
memset(sum,,sizeof(sum));
sort(a+,a+n+);
sort(op+,op+q+,cmp1);
for(int i=,j=;i<=q;i++){
while(j<=n&&a[j].x<op[i].a){
· update(,,n,tree[a[j].id],a[j].x);
j++;
}
ansl[op[i].id] = ask(op[i].x,op[i].y);
}
memset(sum,,sizeof(sum));
sort(op+,op++q,cmp2);
for(int i = , j = ; i <= q; i++){
while(j <= n && a[j].x <= op[i].b){
update(, , n, tree[a[j].id], a[j].x);
j++;
}
ansr[op[i].id] = ask(op[i].x, op[i].y);
//cout<<ansr[op[i].id]<<endl;
}
for(int i=;i<=q;i++){
if(i!=) cout<<" ";
cout<<ansr[i]-ansl[i];
}
cout<<endl;
}
return ;
}
HDU 6162 Ch’s gift的更多相关文章
- HDU 6162 - Ch’s gift | 2017 ZJUT Multi-University Training 9
/* HDU 6162 - Ch’s gift [ LCA,线段树 ] | 2017 ZJUT Multi-University Training 9 题意: N节点的树,Q组询问 每次询问s,t两节 ...
- 2017 Multi-University Training Contest - Team 9 1002&&HDU 6162 Ch’s gift【树链部分+线段树】
Ch’s gift Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total S ...
- HDU 6162 Ch’s gift (树剖 + 离线线段树)
Ch’s gift Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total S ...
- 2017多校第9场 HDU 6162 Ch’s gift 树剖加主席树
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6162 题意:给出一棵树的链接方法,每个点都有一个数字,询问U->V节点经过所有路径中l < ...
- HDU 6162 Ch's gift(树链剖分+线段树)
题意: 已知树上的每个节点的值和节点之间的关系建成了一棵树,现在查询节点u到节点v的最短路径上的节点值在l到r之间的节点值的和. 思路: 用树链剖分将树映射到线段树上,线段树上维护3个值,max,mi ...
- HDU 6162 Ch’s gift (线段树+树链剖分)
题意:给定上一棵树,每个树的结点有一个权值,有 m 个询问,每次询问 s, t , a, b,问你从 s 到 t 这条路上,权值在 a 和 b 之间的和.(闭区间). 析:很明显的树链剖分,但是要用 ...
- L - Ch’s gift HDU - 6162
Ch’s gift Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total S ...
- hdu6162 Ch’s gift
地址:http://acm.split.hdu.edu.cn/showproblem.php?pid=6162 题目: Ch’s gift Time Limit: 6000/3000 MS (Java ...
- Ch’s gift
Ch’s gift Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Proble ...
随机推荐
- BZOJ4816 SDOI2017 数字表格 莫比乌斯反演
传送门 做莫比乌斯反演题显著提高了我的\(\LaTeX\)水平 推式子(默认\(N \leq M\),分数下取整,会省略大部分过程) \(\begin{align*} \prod\limits_{i= ...
- Ionic 动态配置url路由的设置
随着Ionic App功能的不断增加,需要路由的url设置就越来越多,不喜欢在config函数中写一堆硬代码,一则不美,二则维护起来也麻烦,能不能把这些数据独立出来呢? 经过查找资料与各种实验,最终找 ...
- 2018年高教社杯全国大学生数学建模竞赛A题解题思路
题目 先贴一下A的题目吧 A题 高温作业专用服装设计 在高温环境下工作时,人们需要穿着专用服装以避免灼伤.专用服装通常由三层织物材料构成,记为I.II.III层,其中I层与外界环境接触,III层与 ...
- .net 2.0 使用linq
.net 2.0 使用linq,主要是使用Linq to Object,没有测试Linq to XML. 方法: 新建一个net2.0的程序,然后添加对System.Core.Dll的引用.引用时vs ...
- Steamworks上传游戏
1.在steamPipe下配置Depot,每个Depot表示程序对应的分支配置语言,操作系统,架构组合等 2.安装,启动项目是配置游戏启动文件的相关信息,不同的操作系统架构等需要添加不同的启动项 3. ...
- python基础学习笔记(四)
列表 本节继续讨论列表不同元组和字符串的地方:列表是可变的(mutable)----可以改变列表的内容,并且列表有很多有用的.专门的方法. List函数可以将一个字符串拆分成列表. >>& ...
- bootstrap完善按钮组bug
.btn.active { border: 1px solid #ff9400 !important; color: #ff9400 !important; } <div class=" ...
- C. Rectangles
链接 [http://codeforces.com/group/1EzrFFyOc0/contest/1028/problem/C] 题意 给你n个矩形的左下角和右上角坐标,问你至少包含在n-1个矩形 ...
- Daily scrum 12.21
今天ui组反映了一个数据库数据类型的问题,开发人员在完成任务后再去处理. Member Today’s task 林豪森 与学霸其他小组交流,处理整合问题 宋天舒 修复数据库问题 张迎春 修复数据库问 ...
- M2事后分析
计划 1. 你原计划的工作是否最后都做完了? 如果有没做完的,为什么? 修复了M1阶段的bug,整合前两组的数据.扩充功能,和学霸组达成功能上的一致,对数据库进行信息的完善. 2. 有没有发现你做了一 ...