真的不好意思说话。你写得越多,对风暴各种问题泄露,更离谱,有什么错有。。

。但是,仍然有一个。同时经过规范的编写清晰的代码。不能认为是理所当然。。。

树桩阵列版:

#include<cstdio>
#include<cstring>
#pragma comment(linker, "/STACK:1024000000,1024000000")
#include<iostream>
#include<algorithm>
using namespace std;
const int M = 50100;
int son[M],top[M],father[M],dep[M],ti[M],siz[M];
int idx,tp,n;
struct {
int head;
}H[M];
struct {
int v,next;
}E[M];
void dfs_1(int u,int fa){
son[u] = 0;siz[u] = 1;father[u] = fa;dep[u] = dep[fa] + 1;
for(int i=H[u].head;i!=-1;i=E[i].next){
int v = E[i].v;
if(v == fa)continue;
dfs_1(v,u);
siz[u] += siz[v];
if(siz[son[u]] < siz[v])son[u] = v;
}
}
void dfs_2(int u,int fa){
top[u] = fa;
ti[u] = idx++;
if(son[u]) dfs_2(son[u],fa);
for(int i=H[u].head;i!=-1;i=E[i].next){
int v = E[i].v;
if(v == father[u]|| v == son[u])continue;
dfs_2(v,v);
}
}
int lobit(int x){
return x&(-x);
}
int num[M*2];
void update(int x ,int d){
while( x <= n){
num[x] += d;
x += lobit(x);
}
}
void change(int u,int v,int w){
int f1 = top[u];
int f2 = top[v];
while(f1 != f2){
if(dep[f1] <dep[f2]){
swap(f1,f2);
swap(u,v);
}
update(ti[f1],w);
update(ti[u]+1,-w);
u = father[f1];f1 = top[u];
}
if(dep[u] > dep[v])swap(u,v);
update(ti[u],w);
update(ti[v]+1,-w);
}
int sum(int x){
int ans = 0;
while(x>0){
ans += num[x];
x -= lobit(x);
}
return ans;
} void add(int u,int v){
E[tp].v = v;
E[tp].next = H[u].head;
H[u].head = tp++;
}
void init(){
memset(E,-1,sizeof(E));
memset(H,-1,sizeof(H));
memset(num,0,sizeof(num));
tp = 0;
idx = 1;
}
int findp(int x){
return sum(ti[x]);
}
int a[M];
int main(){
// freopen("input.txt","r",stdin);
int m,p,u,v,w;
while(scanf("%d%d%d",&n,&m,&p)==3){
init();
for(int i=1;i<=n;i++){
scanf("%d",&a[i]);
}
while(m -- ){
scanf("%d%d",&u,&v);
add(u,v);add(v,u);
}
dfs_1(1,1);
dfs_2(1,1);
for(int i=1;i<=n;i++){
update(ti[i],a[i]);
update(ti[i]+1,-a[i]);
} char op[100];
while (p--){
scanf("%s%d",op,&u);
if(op[0] == 'Q'){
printf("%d\n",sum(ti[u]));
}else {
scanf("%d%d",&v,&w);
if(op[0] == 'D')w = -w;
change(u,v,w);
}
} }
}<span style="background-color: rgb(255, 0, 0);">
</span>

线段树版:

#pragma comment(linker,"/STACK:100000000,100000000")
#include<cstdio>
#include<cstring>
#include<iostream>
using namespace std;
#define lson id << 1
#define rson id << 1 | 1
const int M = 50010;
int a[M],top[M],ti[M],son[M],father[M],siz[M],dep[M];
int tp,idx;
struct {
int head;
}H[M*2];
struct {
int v,next;
}E[M*4];
void add(int u,int v){
E[tp].v = v;
E[tp].next = H[u].head;
H[u].head = tp++;
}
void dfs_1(int u,int fa){
son[u] = 0;siz[u] =1;dep[u] = dep[fa] + 1;father[u] = fa;
for(int i=H[u].head;i!=-1;i=E[i].next){
int v = E[i].v;
if(v == fa)continue;
dfs_1(v,u);
siz[u] += siz[v];
if(siz[v] > siz[son[u]])son[u] = v; }
}
void dfs_2(int u,int fa){
ti[u] = ++idx;top[u] = fa;
if(son[u])dfs_2(son[u],fa);
for(int i=H[u].head;i!=-1;i=E[i].next){
int v = E[i].v;
if(v == father[u]||v == son[u])continue;
dfs_2(v,v);
}
}
/* 线段树*/ struct Lintree{
int l,r,w,mark;
int mid(){
return (l+r) / 2;
}
}node[M*4];
void build_tree(int id,int l,int r){
node[id].l = l;
node[id].r = r;
node[id].mark = 0;
if(l == r)return; int mid = node[id].mid();
build_tree(lson,l,mid);
build_tree(rson,mid+1,r);
}
void push_down(int id){
if(node[id].mark){
node[lson].mark += node[id].mark;
node[rson].mark += node[id].mark;
node[id].mark = 0;
}
}
void update(int id,int l,int r,int w){
if(node[id].l == l && node[id].r == r){
// cout <<"dfasf -->" <<l<<"dfsf" <<r<<endl;
node[id].mark+=w;
return;
}
push_down(id);
int mid = node[id].mid();
if(r <=mid)update(lson,l,r,w);
else if(l > mid)update(rson,l,r,w);
else {
update(lson,l,mid,w);
update(rson,mid+1,r,w);
}
}
int query(int id,int x){
if(node[id].l == x&&node[id].r == x ){
// cout <<"<sdf>"<< node[id].w<<endl;
return node[id].mark;
}
push_down(id);
int mid = node[id].mid();
if(x <=mid)return query(lson,x);
else return query(rson,x);
}
void change(int u,int v,int x){
// cout <<u<<"**"<<v<<endl;
int f1 = top[u],f2 = top[v];
while(f1 != f2){
if(dep[f1] < dep[f2]){
swap(f1,f2);
swap(u,v);
}
update(1,ti[f1],ti[u],x);
u = father[f1];f1 = top[u];
}
//if(u == v)return
if(dep[u] > dep[v])swap(u,v);
update(1,ti[u],ti[v],x);
}
void init(){
memset(E,-1,sizeof(E));
memset(H,-1,sizeof(H));
tp = idx = 0;
}
int main(){
int n,m,p,u,v,w;
//freopen("input.txt","r",stdin);
while(~scanf("%d%d%d",&n,&m,&p)){
init(); for(int i=1;i<=n;i++)
scanf("%d",&a[i]);
while(m--) {
scanf("%d%d",&u,&v);
add(u,v);
add(v,u);
}
dfs_1(1,1);
dfs_2(1,1);
build_tree(1,1,n);
char op[1000]; while(p--){
scanf("%s",op);
if(op[0] == 'Q'){
scanf("%d",&u);
printf("%d\n",query(1,ti[u])+a[u]);
}else {
scanf("%d%d%d",&u,&v,&w);
if(op[0] == 'D') w = -w;
change(u,v,w); }
}
}
}

版权声明:本文博主原创文章。博客,未经同意不得转载。

hdu 3966 树链分割第一3遍的更多相关文章

  1. HDU 3966 (树链剖分+线段树)

    Problem Aragorn's Story (HDU 3966) 题目大意 给定一颗树,有点权. 要求支持两种操作,将一条路径上的所有点权值增加或减少ai,询问某点的权值. 解题分析 树链剖分模板 ...

  2. hdu 3966(树链剖分+线段树区间更新)

    传送门:Problem 3966 https://www.cnblogs.com/violet-acmer/p/9711441.html 学习资料: [1]线段树区间更新:https://blog.c ...

  3. HDU 3966 /// 树链剖分+树状数组

    题意: http://acm.hdu.edu.cn/showproblem.php?pid=3966 给一棵树,并给定各个点权的值,然后有3种操作: I x y z : 把x到y的路径上的所有点权值加 ...

  4. hdu 3966 树链剖分

    思路:树链剖分入门题,我这门入得好苦啊,程序很快写出来了,可是在LCA过程中把update函数里的左右边界位置写反了,一直RE到死. #pragma comment(linker, "/ST ...

  5. HDU 3966 树链剖分后线段树维护

    题意: 一棵树, 操作1.$path(a,b)$之间的点权$+k$ 操作2.单点查询 题解: 树链剖分即可,注意代码细节,双向映射 主要是记录一下板子 #include <string.h> ...

  6. HDU - 3966 树链刨分

    题目传送门 操作就是询问某个点的值, 然后就是对一条路径上的值全部修改. 最基本的树刨题目了. 树刨的思想: 1. 对于每个点找到他的重儿子. void dfs1(int o, int u){ sz[ ...

  7. HDU 3966 树链剖分+树状数组 模板

    Aragorn's Story Time Limit: 10000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) ...

  8. HDU 5274(树链剖分)

    树链剖分第一题QAQ,纪念下 #pragma comment(linker, "/STACK:102400000,102400000") #include <iostream ...

  9. hdu 5893 (树链剖分+合并)

    List wants to travel Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/O ...

随机推荐

  1. UIActionSheet用法

    //上拉菜单 1 UIActionSheet* sheet = [[UIActionSheet alloc] initWithTitle:nil delegate:self cancelButtonT ...

  2. js课程 3-9 js内置对象定时器和超时器怎么使用

    js课程 3-9 js内置对象定时器和超时器怎么使用 一.总结 一句话总结:定时器:    1.定义    sobj=setInterval(func,1000);        2.清除    cl ...

  3. [array] leetCode-15. 3Sum-Medium

    leetCode-15. 3Sum-Medium descrition Given an array S of n integers, are there elements a, b, c in S ...

  4. 【BZOJ 3156】防御准备

    [链接] 链接 [题意] 在这里输入题意 [题解] 把a倒过来 设f[i]表示在i放一个防御塔的最小花费; 我们如果从j转移过来 就表示j+1..i-1这一段放人偶. s[i] = 1 + 2 + . ...

  5. 计算机图形学(二)输出图元_3_画线算法_2_DDA算法

    DDA算法        数字微分分析仪(digital differential analyzer, DDA)方法是一种线段扫描转换算法.基于使用等式(3.4)或等式(3.5)计算的&x或& ...

  6. [Angular] @ContentChild with Directive ref

    For example you have a component, which take a trasclude input element: <au-fa-input id="pas ...

  7. ARM 授权费用太贵 科技巨头欲转向开源架构 RISC-V

    不久前,特斯拉加入 RISC-V 基金会,并考虑在新款芯片中使用免费的 RISC-V 设计.至此,已有 IBM.NXP.西部数据.英伟达.高通.三星.谷歌.华为等 100 多家科技公司加入 RISC- ...

  8. thinkphp 3.2,引入第三方类库的粗略记录

    首先用第三方类库我是放到vendor里面的 根目录\ThinkPHP\Library\Vendor\Wxphp 例如创建了一个Wxphp文件夹,里面有个php文件叫做     zll.php    文 ...

  9. [Django] ModelViewSet from rest_framework and Router

    To build rest api easily, we can use ModelViewSet from rest_framework. It provides GET, POST, DELETE ...

  10. php课程 4-15 数组遍历、超全局数组、表单提交数据(多看学习视频)

    php课程 4-15  数组遍历.超全局数组.表单提交数据(多看学习视频) 一.总结 一句话总结:超全局数组特别有用,比如$_SERVER可以获取所有的客户端访问服务器的情况. 1.数组遍历三种方式( ...