【题目分析】

垃圾vjudge又挂了。

树链剖分裸题。

垃圾spoj,交了好几次,基本没改动却过了。

【代码】(自带常数,是别人的2倍左右)

  1. #include <cstdio>
  2. #include <cstring>
  3. #include <iostream>
  4. #include <algorithm>
  5. using namespace std;
  6. #define maxn 20005
  7.  
  8. int T,n,fr[maxn],h[maxn],to[maxn],ne[maxn],w[maxn],en=0;
  9. int mx[maxn<<3],fa[maxn],siz[maxn],son[maxn],pos[maxn],dep[maxn],tot=0;
  10. int top[maxn],a[maxn],x,y,L,R,C,X,tofa[maxn];
  11. char opt[10];
  12.  
  13. int Getint()
  14. {
  15. int x=0,f=1; char ch=getchar();
  16. while (ch<'0'||ch>'9') {if (ch=='-') f=-1; ch=getchar();}
  17. while (ch>='0'&&ch<='9') {x=x*10+ch-'0'; ch=getchar();}
  18. return x*f;
  19. }
  20.  
  21. void add(int a,int b,int c)
  22. {fr[en]=a;to[en]=b;ne[en]=h[a];w[en]=c;h[a]=en++;}
  23.  
  24. void rd()
  25. {
  26. n=Getint();
  27. for(register int i=1;i<n;++i)
  28. {
  29. int a=Getint(),b=Getint(),c=Getint();
  30. add(a,b,c),add(b,a,c);
  31. }
  32. }
  33. void init()
  34. {
  35. memset(fa,0,sizeof fa);
  36. memset(son,0,sizeof son);
  37. memset(h,-1,sizeof h);
  38. tot=en=0;
  39. }
  40.  
  41. void dfs1(int o)
  42. {
  43. siz[o]=1;
  44. for (register int i=h[o];i>=0;i=ne[i])
  45. if (fa[o]!=to[i]){
  46. fa[to[i]]=o;
  47. tofa[to[i]]=w[i];
  48. dep[to[i]]=dep[o]+1;
  49. dfs1(to[i]);
  50. siz[o]+=siz[to[i]];
  51. if (siz[son[o]]<siz[to[i]]) son[o]=to[i];
  52. }
  53. }
  54.  
  55. void dfs2(int o,int tp,int ww)
  56. {
  57. // printf("dfs2 _ %d %d %d son is %d\n",o,tp,ww,son[o]);
  58. top[o]=tp;pos[o]=++tot;a[pos[o]]=ww;
  59. if (son[o]==0) return;
  60. // for (register int i=h[o];i>=0;i=ne[i])
  61. // if (to[i]==son[o])
  62. // dfs2(son[o],tp,w[i]);
  63. // printf("%d to %d as height son\n",o,son[o]);
  64. dfs2(son[o],tp,tofa[son[o]]);
  65. for (register int i=h[o];i>=0;i=ne[i])
  66. if (fa[o]!=to[i]&&to[i]!=son[o])
  67. dfs2(to[i],to[i],w[i]);
  68. }
  69.  
  70. void build(int o,int l,int r)
  71. {
  72. int mid=l+r>>1;
  73. if (l==r){mx[o]=a[l];return;}
  74. build(o<<1,l,mid); build(o<<1|1,mid+1,r);
  75. mx[o]=max(mx[o<<1],mx[o<<1|1]);
  76. }
  77.  
  78. void modify(int o,int l,int r)
  79. {
  80. if (l==r) {mx[o]=C;return;}
  81. int mid=l+r>>1;
  82. if (X<=mid) modify(o<<1,l,mid);
  83. else modify(o<<1|1,mid+1,r);
  84. mx[o]=max(mx[o<<1],mx[o<<1|1]);
  85. }
  86.  
  87. int query(int o,int l,int r)
  88. {
  89. if (L<=l&&r<=R) return mx[o];
  90. int mid=l+r>>1;
  91. if (R<=mid) return query(o<<1,l,mid);
  92. if (L>mid) return query(o<<1|1,mid+1,r);
  93. else return max(query(o<<1,l,mid),query(o<<1|1,mid+1,r));
  94. }
  95.  
  96. int ask(int x,int y)
  97. {
  98. int ret=0;
  99. while (top[x]!=top[y])
  100. {
  101. if (dep[top[x]]<dep[top[y]]) swap(x,y);
  102. L=pos[top[x]];R=pos[x];
  103. ret=max(ret,query(1,1,n));
  104. x=fa[top[x]];
  105. }
  106. if (dep[x]<dep[y]) swap(x,y);
  107. if (x==y) return ret;
  108. L=pos[son[y]];R=pos[x];
  109. ret=max(ret,query(1,1,n));
  110. return ret;
  111. }
  112.  
  113. int main()
  114. {
  115. freopen("in.txt","r",stdin);
  116. freopen("wa.txt","w",stdout);
  117. T=Getint();
  118. while (T--)
  119. {
  120. init(),rd();
  121. dfs1(1);dfs2(1,1,0);
  122. // printf("n is %d\n",n);
  123. build(1,1,n);
  124. while (scanf("%s",opt)&&opt[0]!='D')
  125. {
  126. if (opt[0]=='Q')
  127. {
  128. x=Getint();y=Getint();
  129. printf("%d\n",ask(x,y));
  130. }
  131. else
  132. {
  133. x=Getint(); y=Getint();
  134. L=fr[x*2-1];R=to[x*2-1];
  135. if (fa[L]==R) X=pos[L],C=y,modify(1,1,n);
  136. else X=pos[R],C=y,modify(1,1,n);
  137. }
  138. }
  139. }
  140. return 0;
  141. }

  

SPOJ QTREE Query on a tree ——树链剖分 线段树的更多相关文章

  1. Spoj Query on a tree SPOJ - QTREE(树链剖分+线段树)

    You are given a tree (an acyclic undirected connected graph) with N nodes, and edges numbered 1, 2, ...

  2. 【POJ3237】Tree(树链剖分+线段树)

    Description You are given a tree with N nodes. The tree’s nodes are numbered 1 through N and its edg ...

  3. Aizu 2450 Do use segment tree 树链剖分+线段树

    Do use segment tree Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://www.bnuoj.com/v3/problem_show ...

  4. POJ3237 Tree 树链剖分 线段树

    欢迎访问~原文出处——博客园-zhouzhendong 去博客园看该题解 题目传送门 - POJ3237 题意概括 Description 给你由N个结点组成的树.树的节点被编号为1到N,边被编号为1 ...

  5. 【CF725G】Messages on a Tree 树链剖分+线段树

    [CF725G]Messages on a Tree 题意:给你一棵n+1个节点的树,0号节点是树根,在编号为1到n的节点上各有一只跳蚤,0号节点是跳蚤国王.现在一些跳蚤要给跳蚤国王发信息.具体的信息 ...

  6. Water Tree CodeForces 343D 树链剖分+线段树

    Water Tree CodeForces 343D 树链剖分+线段树 题意 给定一棵n个n-1条边的树,起初所有节点权值为0. 然后m个操作, 1 x:把x为根的子树的点的权值修改为1: 2 x:把 ...

  7. 【BZOJ-2325】道馆之战 树链剖分 + 线段树

    2325: [ZJOI2011]道馆之战 Time Limit: 40 Sec  Memory Limit: 256 MBSubmit: 1153  Solved: 421[Submit][Statu ...

  8. POJ3237 (树链剖分+线段树)

    Problem Tree (POJ3237) 题目大意 给定一颗树,有边权. 要求支持三种操作: 操作一:更改某条边的权值. 操作二:将某条路径上的边权取反. 操作三:询问某条路径上的最大权值. 解题 ...

  9. BZOJ.4034 [HAOI2015]树上操作 ( 点权树链剖分 线段树 )

    BZOJ.4034 [HAOI2015]树上操作 ( 点权树链剖分 线段树 ) 题意分析 有一棵点数为 N 的树,以点 1 为根,且树点有边权.然后有 M 个 操作,分为三种: 操作 1 :把某个节点 ...

  10. Aragorn's Story 树链剖分+线段树 && 树链剖分+树状数组

    Aragorn's Story 来源:http://www.fjutacm.com/Problem.jsp?pid=2710来源:http://acm.hdu.edu.cn/showproblem.p ...

随机推荐

  1. python-mysql软件下载地址

    http://sourceforge.net/projects/mysql-python/?source=dlp

  2. SQL 数学串函数

    数学函数 ceiling  取上限 floor  取下限 round 四舍五入 len   长度 abs  绝对值 PI()圆周率 sqrt 开根号 qwuare 平方根 select  10     ...

  3. C#语言基础 Main 函数中变量 整型

    在我们每次上网或者用电脑的时候,请输入你的xxx 或者你的名字(年龄/身高/学校/籍贯)是 在这里我们就要学到一些变量,就是不确定的东西 string a:   //赋予变量 a ="内容& ...

  4. 利用python进行数据分析2_数据采集与操作

    txt_filename = './files/python_baidu.txt' # 打开文件 file_obj = open(txt_filename, 'r', encoding='utf-8' ...

  5. iterator方法和for方法 遍历数据库user表结果集ResultSet

    首先,把连接数据库的语句做成工具类,因为会一直用到这几句 代码如下: package com.swift.jdbc; import java.sql.Connection; import java.s ...

  6. 什么是二维数组?二维遍历?Java二维数组制作图片迷宫 使用如鹏游戏引擎制作窗口界面 附带压缩包下载,解压后双击start.bat启动

    什么是二维数组? 数组当中放的还是数组 int [][] arr=new int[3][2]; 有3个小箱子,每个箱子2个格子. 看结果? int [][] arr=new int[3][2]; Sy ...

  7. viewDidLoad、viewWillAppear、viewWillDisappear

    - (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil viewDidLo ...

  8. iOS开发遇到的坑之一: 开发遇见如下错误:Undefined symbols for architecture arm64

    博客处女作,写得不好望谅解! “for architecture arm64”就是说没有支持arm64,在Build settings里architecture相关的几项需要配置正确 在最近升级coc ...

  9. 删除链表的倒数第N个节点(三种方法实现)

    删除链表的倒数第N个节点 给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点. 示例: 给定一个链表: 1->2->3->4->5, 和 n = 2. 当删除了倒 ...

  10. windows 7虚拟机与主机不能互ping通,但是都能与网关ping通

    这里是在Windows 10的环境下使用VMware安装了一个Windows 7的虚拟机,虚拟机中是使用桥接的方式.结果发现虚拟机不能与物理机互通,但是却能与网关互通.查看虚拟机和物理机的IP发现都是 ...