BZOJ 2157: 旅游
2157: 旅游
Time Limit: 10 Sec Memory Limit: 259 MB
Submit: 1347 Solved: 619
[Submit][Status][Discuss]
Description
Ray 乐忠于旅游,这次他来到了T 城。T 城是一个水上城市,一共有 N 个景点,有些景点之间会用一座桥连接。为了方便游客到达每个景点但又为了节约成本,T 城的任意两个景点之间有且只有一条路径。换句话说, T 城中只有N − 1 座桥。Ray 发现,有些桥上可以看到美丽的景色,让人心情愉悦,但有些桥狭窄泥泞,令人烦躁。于是,他给每座桥定义一个愉悦度w,也就是说,Ray 经过这座桥会增加w 的愉悦度,这或许是正的也可能是负的。有时,Ray 看待同一座桥的心情也会发生改变。现在,Ray 想让你帮他计算从u 景点到v 景点能获得的总愉悦度。有时,他还想知道某段路上最美丽的桥所提供的最大愉悦度,或是某段路上最糟糕的一座桥提供的最低愉悦度。
Input
输入的第一行包含一个整数N,表示T 城中的景点个数。景点编号为 0...N − 1。接下来N − 1 行,每行三个整数u、v 和w,表示有一条u 到v,使 Ray 愉悦度增加w 的桥。桥的编号为1...N − 1。|w| <= 1000。输入的第N + 1 行包含一个整数M,表示Ray 的操作数目。接下来有M 行,每行描述了一个操作,操作有如下五种形式: C i w,表示Ray 对于经过第i 座桥的愉悦度变成了w。 N u v,表示Ray 对于经过景点u 到v 的路径上的每一座桥的愉悦度都变成原来的相反数。 SUM u v,表示询问从景点u 到v 所获得的总愉悦度。 MAX u v,表示询问从景点u 到v 的路径上的所有桥中某一座桥所提供的最大愉悦度。 MIN u v,表示询问从景点u 到v 的路径上的所有桥中某一座桥所提供的最小愉悦度。测试数据保证,任意时刻,Ray 对于经过每一座桥的愉悦度的绝对值小于等于1000。
Output
对于每一个询问(操作S、MAX 和MIN),输出答案。
Sample Input
0 1 1
1 2 2
8
SUM 0 2
MAX 0 2
N 0 1
SUM 0 2
MIN 0 2
C 1 3
SUM 0 2
MAX 0 2
Sample Output
2
1
-1
5
3
HINT
一共有10 个数据,对于第i (1 <= i <= 10) 个数据, N = M = i * 2000。
Source
Link-Cut-Tree 模板题
维护子树(路径)最值、权值和
#include <cstdio> template <class T>
inline T swap(T &a, T &b)
{
T c;
c = a;
a = b;
b = c;
} template <class T>
inline T max(const T &a, const T &b)
{
return a > b ? a : b;
} template <class T>
inline T min(const T &a, const T &b)
{
return a < b ? a : b;
} const int mxn = ;
const int inf = 1e9 + ; int n, m, val[mxn]; struct node
{
int sum;
int maxi;
int mini;
bool neg;
bool rev;
node *son[];
node *father;
}tree[mxn]; inline bool isRoot(node *t)
{
node *&f = t->father; if (f == NULL)return true; if (f->son[] == t)return false;
if (f->son[] == t)return false; return true;
} inline void addNeg(node *t)
{
t->neg ^= true; swap(t->maxi, t->mini); t->sum = -t->sum;
t->maxi = -t->maxi;
t->mini = -t->mini; if (t - tree >= n)
{ // edge
int id = t - tree - n; val[id] = -val[id];
}
} inline void pushNeg(node *t)
{
if (t->neg)
{
t->neg = false; if (t->son[] != NULL)addNeg(t->son[]);
if (t->son[] != NULL)addNeg(t->son[]);
}
} inline void addRev(node *t)
{
t->rev ^= true; swap(t->son[], t->son[]);
} inline void pushRev(node *t)
{
if (t->rev)
{
t->rev = false; if (t->son[] != NULL)addRev(t->son[]);
if (t->son[] != NULL)addRev(t->son[]);
}
} inline void update(node *t)
{
if (t - tree < n)
{ // point
t->sum = ;
t->maxi = -inf;
t->mini = +inf;
}
else
{ // edge
int id = t - tree - n; t->sum = val[id];
t->maxi = val[id];
t->mini = val[id];
} if (t->son[] != NULL)
{
t->sum += t->son[]->sum;
t->maxi = max(t->maxi, t->son[]->maxi);
t->mini = min(t->mini, t->son[]->mini);
}
if (t->son[] != NULL)
{
t->sum += t->son[]->sum;
t->maxi = max(t->maxi, t->son[]->maxi);
t->mini = min(t->mini, t->son[]->mini);
}
} inline void connect(node *t, node *f, bool k)
{
if (t != NULL)t->father = f;
if (f != NULL)f->son[k] = t;
} inline void rotate(node *t)
{
node *f = t->father;
node *g = f->father; bool s = f->son[] == t; connect(t->son[!s], f, s);
connect(f, t, !s); t->father = g;
if (g && g->son[] == f)g->son[] = t;
if (g && g->son[] == f)g->son[] = t; update(f);
update(t);
} inline void pushdown(node *t)
{
pushNeg(t);
pushRev(t);
} inline void pushDown(node *t)
{
static node *stk[mxn]; int top = ; stk[++top] = t; while (!isRoot(t))
stk[++top] = t = t->father; while (top)pushdown(stk[top--]);
} inline void splay(node *t)
{
pushDown(t); while (!isRoot(t))
{
node *f = t->father;
node *g = f->father; if (isRoot(f))
rotate(t);
else
{
bool a = f && f->son[] == t;
bool b = g && g->son[] == f; if (a == b)
rotate(f), rotate(t);
else
rotate(t), rotate(t);
}
}
} inline void access(node *t)
{
node *q = t;
node *p = NULL; while (t != NULL)
{
splay(t);
t->son[] = p, update(t);
p = t, t = t->father;
} splay(q);
} inline void makeRoot(node *t)
{
access(t), addRev(t);
} inline void link(node *t, node *f)
{
makeRoot(t), t->father = f;
} signed main(void)
{
scanf("%d", &n); for (int i = ; i <= n; ++i)
update(tree + i);
for (int i = , x, y, w; i < n; ++i)
{
scanf("%d%d%d", &x, &y, &w);
val[i] = w, update(tree + i + n);
link(tree + x, tree + i + n);
link(tree + y, tree + i + n);
} scanf("%d", &m); while (m--)
{
static int x, y;
static char s[]; scanf("%s%d%d", s, &x, &y); if (s[] == 'C')
access(tree + x + n), val[x] = y, update(tree + x + n);
else if (s[] == 'N')
makeRoot(tree + x), access(tree + y), addNeg(tree + y);
else if (s[] == 'S')
makeRoot(tree + x), access(tree + y), printf("%d\n", tree[y].sum);
else if (s[] == 'A')
makeRoot(tree + x), access(tree + y), printf("%d\n", tree[y].maxi);
else
makeRoot(tree + x), access(tree + y), printf("%d\n", tree[y].mini);
}
}
@Author: YouSiki
BZOJ 2157: 旅游的更多相关文章
- BZOJ 2157: 旅游( 树链剖分 )
树链剖分.. 样例太大了根本没法调...顺便把数据生成器放上来 -------------------------------------------------------------------- ...
- bzoj 2157: 旅游 (LCT 边权)
链接:https://www.lydsy.com/JudgeOnline/problem.php?id=2157 题面; 2157: 旅游 Time Limit: 10 Sec Memory Lim ...
- 【刷题】BZOJ 2157 旅游
Description Ray 乐忠于旅游,这次他来到了T 城.T 城是一个水上城市,一共有 N 个景点,有些景点之间会用一座桥连接.为了方便游客到达每个景点但又为了节约成本,T 城的任意两个景点之间 ...
- BZOJ 2157 旅游(动态树)
[题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=2157 [题目大意] 支持修改边,链上查询最大值最小值总和,以及链上求相反数 [题解] ...
- BZOJ 2157 旅游(树链剖分+线段树)
[题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=2157 [题目大意] 支持修改边,链上查询最大值最小值总和,以及链上求相反数 [题解] ...
- BZOJ 2157: 旅游 (2017.7.21 6:30-2017.7.21 15:38 今日第一题。。)
Time Limit: 10 Sec Memory Limit: 259 MBSubmit: 1754 Solved: 765 Description Ray 乐忠于旅游,这次他来到了T 城.T ...
- bzoj 2157: 旅游【树链剖分+线段树】
裸的树链剖分+线段树 但是要注意一个地方--我WA了好几次才发现取完相反数之后max值和min值是要交换的-- #include<iostream> #include<cstdio& ...
- BZOJ 2157: 旅游 (树链剖分+线段树)
树链剖分后线段树维护区间最大最小值与和. 支持单点修改与区间取反. 直接写个区间取反标记就行了.线段树板题.(200行6000B+ 1A警告) #include <cstdio> #inc ...
- BZOJ 2157: 旅游 (结构体存变量)
用结构体存变量好像确实能提高运行速度,以后就这么写数据结构了 Code: #include <cstdio> #include <algorithm> #include < ...
随机推荐
- python时间模块详解(time模块)
time 模块 -- 时间获取和转换 time 模块提供各种时间相关的功能 在 Python 中,与时间处理有关的模块包括:time,datetime 以及 calendar 必要说明: 虽然这个模块 ...
- phpcmsv9广告版位调用方法
<div class="ya"> <?php // pc:get 使用sql语句获取指定条件的广告版位! ?> {pc:get sql="SELE ...
- Redis的C语言客户端(hiredis)的安装和使用
关键词:hiredis, cRedis, redis clients, redis客户端, C客户端, 华为云分布式缓存服务 hiredis是一个非常全面的C语言版redis接口库,支持所有命令.管道 ...
- 【python 3.6】类:访问属性及调用方法
>>> class price(): //定义1个类,用于计算价格 def __init__(self,name,danjia): //初始化方法,定义商品名称和单价 self.na ...
- eclipse以MapReduce本地模式运行程序
1.准备好所需的文件winutils.exe.hadoop-eclipse-plugin-2.7.3.jar.hadoop-common-2.2.0-bin-master.zip 下载路径:http: ...
- eos源码编译
编译源码 运行代码 在阿里云 纽约服务器上运行没有出现任何问题. 在其他电脑上出现很多问题. 搜集到的问题如下: 随着EOSIO软件越来越成熟,后来的开发者也越来越幸福.EOS相关源码的编译和运行变得 ...
- hive对于lzo文件处理异常Caused by: java.io.IOException: Compressed length 842086665 exceeds max block size 67108864 (probably corrupt file)
hive查询lzo数据格式文件的表时,抛 Caused by: java.io.IOException: Compressed length 842086665 exceeds max block s ...
- JSBridge的原理
前言 参考来源 前人栽树,后台乘凉,本文参考了以下来源 github-WebViewJavascriptBridge JSBridge-Web与Native交互之iOS篇 Ios Android Hy ...
- OO学习总结与体会
前言 经过了对于面向对象程序设计的一个月的学习,我初尝了JAVA以及面向对象程序的魅力.经历了三次难度逐渐加大的课后编程作业,我对于工程化面向对象编程以及调试有了深刻的认识与颇多感想.我写下本篇文章以 ...
- selenium之鼠标事件
1.鼠标悬停火狐版本51,selenium版本3ActionChains(driver).move_to_element(above).perform()执行代码时,报错:selenium.commo ...