P4842 城市旅行
题目链接
题意分析
首先存在树上的删边连边操作 所以我们使用\(LCT\)维护
然后考虑怎么维护答案
可以发现 对于一条链 我们编号为\(1,2,3,...,n\)
那么期望就是
\]
很显然的 对于当前点\(i\)
穿过\(i\)的区间的左端点有\(i\)个
右端点有\(n-i+1\)个
乘法原理组合一下就可以了
总共的路径就存在\(\frac{n*(n+1)}{2}\)条
分母我们在最后询问的时候直接用求就可以了
关键是我们怎么在\(LCT\)上维护分子
首先对于当前的\(LCT\)
我们考虑一下对于一种情况
a1---a2---a3---a4(根节点)---a5----a6----a7
左边一开始的答案是\(a_1*1*3+a_2*2*2+a_3*3*1\)
然后加入这一条链之后就是\(a_1*1*7+a_2*2*6+a_3*3*5\)
做差之后就是 \(a_1*1*4+a_2*2*4+a_3*3*4\)
也就是\((a_1*1+a_2*2+a_3*3)*(siz_{rc}+1)\)
所以我们维护一个
\]
那么左边增加的值就是\(lsum_{lc}*(siz_{rc}+1)\)
同理对于右边我们维护
\]
那么右边增加的值就是\(rsum_{rc}*(siz_{lc}+1)\)
那么
\]
然后我们同样需要维护\(lsum\)以及\(rsum\)
\]
\]
仔细想一下 式子应该很好理解的
这样的话我们就可以应对\(query()\)的部分了
然后我们需要维护修改的部分
首先 我们思考一下一条链加一个值的影响
首先 单点值以及当前链总和比较好维护
\(lsum\)以及\(rsum\)也就是\(+d*\frac{n* (n+1)}{2}\)
关键是怎么维护分子\(val\)呢
\]
然后再捯饬一下
\]
\]
\]
\]
这样的话我们就可以很好地维护了
同时又要输出最简分数 所以需要求\(gcd\)
CODE:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<cstdlib>
#include<string>
#include<queue>
#include<map>
#include<stack>
#include<list>
#include<set>
#include<deque>
#include<vector>
#include<ctime>
#define ll long long
#define inf 0x7fffffff
#define N 500008
#define IL inline
#define M 308611
#define D double
#define ull unsigned long long
#define R register
using namespace std;
template<typename T>IL void read(T &_)
{
T __=0,___=1;char ____=getchar();
while(!isdigit(____)) {if(____=='-') ___=0;____=getchar();}
while(isdigit(____)) {__=(__<<1)+(__<<3)+____-'0';____=getchar();}
_=___ ? __:-__;
}
/*-------------OI使我快乐-------------*/
struct LCT
{
int fa,son[2];
ll sum,lsum,rsum,val,num,down_tag,siz;
//子树大小其实不用开 long long
//但是由于我自己手写代码的原因 不开long long会WA两个点
bool tag;
}tre[M];
int n,m,tot,top;
int sta[M];
IL ll gcd(ll x,ll y){return y ? gcd(y,x%y):x;}
IL bool isroot(int x){return !((tre[tre[x].fa].son[0]==x)||(tre[tre[x].fa].son[1]==x));}
IL void pushup(int x)
{
tre[x].sum=tre[tre[x].son[0]].sum+tre[tre[x].son[1]].sum+tre[x].num;
tre[x].siz=tre[tre[x].son[0]].siz+tre[tre[x].son[1]].siz+1;
tre[x].val=tre[tre[x].son[0]].val+tre[tre[x].son[1]].val+tre[tre[x].son[0]].lsum*(tre[tre[x].son[1]].siz+1)+tre[tre[x].son[1]].rsum*(tre[tre[x].son[0]].siz+1)+tre[x].num*(tre[tre[x].son[0]].siz+1)*(tre[tre[x].son[1]].siz+1);
tre[x].lsum=tre[tre[x].son[0]].lsum+tre[tre[x].son[1]].lsum+tre[tre[x].son[1]].sum*(tre[tre[x].son[0]].siz+1)+tre[x].num*(tre[tre[x].son[0]].siz+1);
tre[x].rsum=tre[tre[x].son[0]].rsum+tre[tre[x].son[1]].rsum+tre[tre[x].son[0]].sum*(tre[tre[x].son[1]].siz+1)+tre[x].num*(tre[tre[x].son[1]].siz+1);
}
IL void chenge(int y,ll d)
{
ll cdy=((tre[y].siz+1)*tre[y].siz/2),wzy=(tre[y].siz-1)*tre[y].siz*(tre[y].siz*2-1)/6;
tre[y].sum+=tre[y].siz*d;
tre[y].num+=d;
tre[y].lsum+=cdy*d;
tre[y].rsum+=cdy*d;
tre[y].val+=((cdy*tre[y].siz)-(wzy+tre[y].siz*(tre[y].siz-1)/2))*d;
tre[y].down_tag+=d;
}
IL void rever(int x)
{
swap(tre[x].son[0],tre[x].son[1]);
//交换子树的话 lsum以及$rsum$也会发生改变
swap(tre[x].lsum,tre[x].rsum);
tre[x].tag^=1;
}
IL void down(int x)
{
if(tre[x].tag)
{
if(tre[x].son[0]) rever(tre[x].son[0]);
if(tre[x].son[1]) rever(tre[x].son[1]);
tre[x].tag^=1;
}
if(tre[x].down_tag)
{
chenge(tre[x].son[0],tre[x].down_tag);
chenge(tre[x].son[1],tre[x].down_tag);
tre[x].down_tag=0;
}
}
IL void rotate(int x)
{
int cdy=tre[x].fa,wzy=tre[tre[x].fa].fa;
int d=tre[tre[x].fa].son[1]==x;int wson=tre[x].son[d^1];
if(!isroot(cdy)) tre[wzy].son[tre[wzy].son[1]==cdy]=x;
tre[x].fa=wzy;tre[cdy].fa=x;tre[x].son[d^1]=cdy;tre[cdy].son[d]=wson;
if(wson) tre[wson].fa=cdy;pushup(cdy);pushup(x);
}
IL void Splay(int x)
{
int cdy=x,wzy=0;top=0;
sta[++top]=cdy;
while(!isroot(cdy)) sta[++top]=cdy=tre[cdy].fa;
while(top>0) down(sta[top--]);
while(!isroot(x))
{
// printf("x x x %d",x);
cdy=tre[x].fa;wzy=tre[tre[x].fa].fa;
if(!isroot(cdy))
{
if((tre[wzy].son[1]==cdy)^(tre[cdy].son[1]==x)) rotate(x);
else rotate(cdy);
}
rotate(x);
}
pushup(x);
}
IL void access(int x)
{
for(R int now=0;x;x=tre[now=x].fa)
{
Splay(x);tre[x].son[1]=now;pushup(x);
}
}
IL void makeroot(int x)
{
access(x);Splay(x);rever(x);
}
IL int findroot(int x)
{
access(x);Splay(x);
while(tre[x].son[0]) down(x),x=tre[x].son[0];
return x;
}
IL void split(int x,int y)
{
makeroot(x);access(y);Splay(y);
}
IL void link(int x,int y)
{
makeroot(x);
if(findroot(y)==x) return;
tre[x].fa=y;
}
IL void cut(int x,int y)
{
makeroot(x);
if(findroot(y)==x&&tre[x].fa==y&&tre[x].son[1]==0)
tre[x].fa=tre[y].son[0]=0;return;
}
IL void add(int x,int y,ll d)
{
makeroot(x);
if(findroot(y)==x)
{
split(x,y);
chenge(y,d);
}
}
int main()
{
// freopen(".in","r",stdin);
// freopen("tmp.out","w",stdout);
read(n);read(m);
for(R int i=1;i<=n;++i) read(tre[i].num),pushup(i);
for(R int i=1,x,y;i<n;++i)
{
read(x);read(y);
link(x,y);
}
while(m--)
{
int knd,x,y;ll d;
read(knd);
if(knd==1)
{
read(x);read(y);
cut(x,y);
}
else if(knd==2)
{
read(x);read(y);
link(x,y);
}
else if(knd==3)
{
read(x);read(y);read(d);
add(x,y,d);
}
else if(knd==4)
{
read(x);read(y);
makeroot(x);
if(findroot(y)==x)
{
split(x,y);
ll cdy=tre[y].val,wzy=(tre[y].siz+1)*tre[y].siz/2;ll tmp=gcd(cdy,wzy);
printf("%lld/%lld\n",cdy/tmp,wzy/tmp);
}
else puts("-1");
}
}
// fclose(stdin);
// fclose(stdout);
return 0;
}
HEOI 2019 RP++
P4842 城市旅行的更多相关文章
- luogu P4842 城市旅行
嘟嘟嘟 好题,好题 刚开始突发奇想写了一个\(O(n ^ 2)\)暴力,结果竟然过了?!后来才知道是上传题的人把单个数据点开成了10s-- 不过不得不说我这暴力写的挺好看的.删边模仿链表删边,加边的时 ...
- 【LCT】BZOJ3091 城市旅行
3091: 城市旅行 Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 1927 Solved: 631[Submit][Status][Discuss ...
- BZOJ 3091: 城市旅行 [LCT splay 期望]
3091: 城市旅行 Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 1454 Solved: 483[Submit][Status][Discuss ...
- 【BZOJ3091】城市旅行 LCT
[BZOJ3091]城市旅行 Description Input Output Sample Input 4 5 1 3 2 5 1 2 1 3 2 4 4 2 4 1 2 4 2 3 4 3 1 4 ...
- BZOJ3091: 城市旅行
Description Input Output Sample Input 4 5 1 3 2 5 1 2 1 3 2 4 4 2 4 1 2 4 2 3 4 3 1 4 1 4 1 4 Sample ...
- bzoj 3091 城市旅行(LCT+数学分析)
[题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=3091 [思路] 膜Popoqqq大爷的题解 click here [代码]是坑... ...
- BZOJ 3091 城市旅行
Description Input Output Sample Input 4 5 1 3 2 5 1 2 1 3 2 4 4 2 4 1 2 4 2 3 4 3 1 4 1 4 1 4 Sample ...
- BZOJ3091城市旅行——LCT区间信息合并
题目描述 输入 输出 样例输入 4 5 1 3 2 5 1 2 1 3 2 4 4 2 4 1 2 4 2 3 4 3 1 4 1 4 1 4 样例输出 16/3 6/1 提示 对于所有数据满足 1& ...
- BZOJ3091 城市旅行 LCT
欢迎访问~原文出处——博客园-zhouzhendong 去博客园看该题解 题目传送门 - BZOJ3091 题意概括 鉴于本人语文不好,此题的描述原题很清晰,废话不多,请看原题. 可怕,原题是图片,不 ...
随机推荐
- assetBundle打包脚本与LUA
AssetBundles与脚本 所有Unity的AssetBundle,无论是从本地获取 还是www,或者打包整个场景.物体上的脚本都不会被编译.所以AssetBundle打包的时候即使物体上有脚本. ...
- POJ1458 最长公共子序列
描述: 给定两个字符串,求其最长公共子序列(不用连续), 输入: abc bcc programning content 输出: 2 2 解法: 动态规划. 定义dp[i][j]表示s1到i索引,以及 ...
- 怎样在Windows与Centos下的Linux间共享文件,如果mnt文件夹不显示,可能是mnt缺少共享支持
mnt中的hgfs文件夹就是Linux系统中挂载共享文件的默认文件夹.有的人按步骤共享之后mnt中没有出现共享的文件,可能是因为你的mnt缺少共享支持. 此时可以在Terminal中输入:sudo m ...
- SystemTap 内核调试
一.简介 Systemtap是一个Linux下的全新的调式.诊断和性能测量工具,是我目前所知的最强大的内核调试工具. 参考: http://m.blog.csdn.net/blog/hnllei/75 ...
- ORACLE DBLINK 使用
CREATE PUBLIC DATABASE LINK MYDBLINK CONNECT TO RAMS IDENTIFIED BY RAMS USING '(DESCRIPTION =(ADDRES ...
- 关于Android控件EditText的属性InputType的一些经验,java组合多个参数
关于Android控件EditText的属性InputType的一些经验 2013-11-14 15:08:02| 分类: 默认分类|举报|字号 订阅 1.InputType属性在代码中 ...
- 怎样application不被第三方应用杀掉--Android
方法: 对于放在/system/app下的应用,需要在其Manifest.xml文件中设置persistent属性,如应用程序'Phone'的AndroidManifest.xml文件: <ap ...
- Android的/system/lib里加入自己的so库
执行下命令: 1 重新挂载/system目录,使之能读写:mount -o remount,rw /dev/null /system 2 修改这个文件的权限:chmod 777 /system 3 利 ...
- (最短路 SPFA)Currency Exchange -- poj -- 1860
链接: http://poj.org/problem?id=1860 Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 2326 ...
- 编译语言 vs 解释语言
编译语言 vs 解释语言 阅读: 评论: 作者:Rybby 日期: 来源:rybby.com 一直以为,编译语言的性能绝对比解释语言快,因为就理论而言,解释语言要一边解释(将脚本语言翻译成计算 ...