Mr. Cui is working off-campus and he misses his girl friend very much. After a whole night tossing and turning, he decides to get to his girl friend's city and of course, with well-chosen gifts. He knows neither too low the price could a gift be since his girl friend won't like it, nor too high of it since he might consider not worth to do. So he will only buy gifts whose price is between [a,b]. 
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的更多相关文章

  1. 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两节 ...

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

  3. HDU 6162 Ch’s gift (树剖 + 离线线段树)

    Ch’s gift Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total S ...

  4. 2017多校第9场 HDU 6162 Ch’s gift 树剖加主席树

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6162 题意:给出一棵树的链接方法,每个点都有一个数字,询问U->V节点经过所有路径中l < ...

  5. HDU 6162 Ch's gift(树链剖分+线段树)

    题意: 已知树上的每个节点的值和节点之间的关系建成了一棵树,现在查询节点u到节点v的最短路径上的节点值在l到r之间的节点值的和. 思路: 用树链剖分将树映射到线段树上,线段树上维护3个值,max,mi ...

  6. HDU 6162 Ch’s gift (线段树+树链剖分)

    题意:给定上一棵树,每个树的结点有一个权值,有 m 个询问,每次询问 s, t ,  a, b,问你从 s 到 t 这条路上,权值在 a 和 b 之间的和.(闭区间). 析:很明显的树链剖分,但是要用 ...

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

  8. hdu6162 Ch’s gift

    地址:http://acm.split.hdu.edu.cn/showproblem.php?pid=6162 题目: Ch’s gift Time Limit: 6000/3000 MS (Java ...

  9. Ch’s gift

    Ch’s gift Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Proble ...

随机推荐

  1. java JDK安装教程

    JAVA_HOME G:\JDK\java7\jdk1.7.0_80    根据自己的哈     ;%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin 然后找到CLASSPATH ...

  2. 九,ESP8266 判断是断电上电(强制硬件复位)之后运行的内部程序还是内部软件复位之后运行的程序(基于Lua脚本语言)

    现在我有一个需求,WIFI模块控制一个继电器,我要做的是如果内部程序跑乱了,造成了内部程序复位重启,那么控制继电器的状态不能改变 如果是设备断电了,然后又来电了,我需要的是继电器一定要是断开才好.不能 ...

  3. Vue-使用json-server快速“伪造”后台接口

    JSON-Server主要的作用是搭建一台JSON服务器,测试一些业务逻辑(我之前都是采用读取文件的方式尴尬).一.安装 npm install --save json-server 前提是已经安装好 ...

  4. 大话设计模式之工厂模式 C#

    学无止境,精益求精 十年河东,十年河西,莫欺少年穷 学历代表你的过去,能力代表你的现在,学习代表你的将来 大话设计模式一书中第一个开讲的设计模式是简单工厂模式,关于简单工厂模式大家可参考鄙人的博客:代 ...

  5. [Spark][Hive]Hive的命令行客户端启动:

    [Spark][Hive]Hive的命令行客户端启动: [training@localhost Desktop]$ chkconfig | grep hive hive-metastore 0:off ...

  6. 开启C语言的学习之门

    本人是一枚工业界的码农,为了职业道路越来越宽广决定向上位机方面进军,C语言曾经在大学里面学过点皮毛但是离应用远远不够,尽量每天在工作之余更新自己学习的进度,同时也希望有大神能给予在编程道路上的指导,话 ...

  7. php ajax登录注册

    用户登录与退出功能应用在很多地方,而在有些项目中,我们需要使用Ajax方式进行登录,登录成功后只刷新页面局部,从而提升了用户体验度.本文将使用PHP和jQuery来实现登录和退出功能. 准备数据库 本 ...

  8. Java8之集合排序

    1,List<Map<String,Object>>格式 //排序 Comparator<Map<String, Object>> comparator ...

  9. doc窗口 输入命令net start mysql 服务名无效

    解决方案: 1.win+R键输入cmd敲回车进入dos界面: 2.输入cd d:/mysql-5.5.25/bin敲回车,发现没变化: 3.输入d:敲回车,定位到d:\mysql-5.5.25\bin ...

  10. 【个人阅读】软件工程M1/M2做一个总结

    1.以前博客链接 http://www.cnblogs.com/penglinjiang/p/4027850.html http://www.cnblogs.com/penglinjiang/p/40 ...