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 ...
随机推荐
- day86
视图组件 基于以往我们所用的视图函数,我们发现其中冗余的代码比较多,今天就来对其进行封装,争取做一个代码洁癖者 原来我们的视图函数: class Book(APIView): def get(self ...
- jquery ajax超时设置(转载)
var ajaxTimeoutTest = $.ajax({ url:'', //请求的URL timeout : 1000, //超时时间设置,单位毫秒 type : 'get', //请求方式,g ...
- CentOS7.2调整Mysql数据库最大连接数
mysql数据库最大连接数=max_connections+11:root连接,用于管理员连接数据库进行维护操作查看最大连接数:show variables like 'max_connections ...
- [Spark][Hive][Python][SQL]Spark 读取Hive表的小例子
[Spark][Hive][Python][SQL]Spark 读取Hive表的小例子$ cat customers.txt 1 Ali us 2 Bsb ca 3 Carls mx $ hive h ...
- 基于uFUN开发板的心率计(二)动态阈值算法获取心率值
前言 上一篇文章:基于uFUN开发板的心率计(一)DMA方式获取传感器数据,介绍了如何获取PulseSensor心率传感器的电压值,并对硬件电路进行了计算分析.心率计,重要的是要获取到心率值,本篇文章 ...
- JQuery如何实现双击事件时不触发单击事件
单击和双击事件的执行顺序: 单击(click):mousedown,mouseout,click: 双击(dblclick):mousedown,mouseout,click , mousedown, ...
- java 代码获取视频时长
package test; import it.sauronsoftware.jave.Encoder; import it.sauronsoftware.jave.MultimediaInfo; i ...
- Microsoft Office软件自定义安装目录
Microsoft Office安装时不能手动设置安装目录,本文描述通过修改注册表的方式自定义安装目录 1.同时按下快捷键 win + r 启动运行 2.输入 regedit 打开注册表 3.找到 ...
- Apache之Rewrite和RewriteRule规则梳理以及http强转https的配置总结
一. 简单实例介绍一般来说,apache配置好http和https后,如果想要做http强转到https,需要设置url重定向规则,大致需要下面几个步骤即可完成配置: 1)在httpd.conf文件里 ...
- RSA加密算法深入篇
如果你问我,哪一种算法最重要? 我可能会回答"公钥加密算法". 因为它是计算机通信安全的基石,保证了加密数据不会被破解.你可以想象一下,信用卡交易被破解的后果. 进入正题之前,我先 ...