题目:https://www.luogu.org/problemnew/show/P4546

先写了个55分的部分分,直接用LCT维护即可,在洛谷上拿了60分;

注意各处 pushup,而且 splay 维护的是一条链但其形态不一定是一条链!

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
int rd()
{
int ret=,f=; char ch=getchar();
while(ch<''||ch>''){if(ch=='-')f=; ch=getchar();}
while(ch>=''&&ch<='')ret=ret*+ch-'',ch=getchar();
return f?ret:-ret;
}
typedef double db;
int const xn=1e5+;
int n,m,hd[xn],f[xn],fa[xn],c[xn][],rev[xn];
db A[xn],B[xn],sum[xn];
char tp[],op[];
bool isroot(int x){return c[fa[x]][]!=x&&c[fa[x]][]!=x;}
db cal(int x,db v){db y=A[x]*v+B[x]; if(f[x]==)return sin(y); if(f[x]==)return exp(y); return y;}
void pushup(int x){sum[x]=cal(x,)+sum[c[x][]]+sum[c[x][]];}
void rotate(int x)
{
int y=fa[x],z=fa[y],d=(c[y][]==x);
if(!isroot(y))c[z][c[z][]==y]=x;
fa[x]=z; fa[y]=x; fa[c[x][!d]]=y;
c[y][d]=c[x][!d]; c[x][!d]=y;
pushup(y); pushup(x);
}
int sta[xn],top;
void rever(int x)
{
if(!rev[x])return;
rev[c[x][]]^=; rev[c[x][]]^=;
swap(c[x][],c[x][]); rev[x]=;
}
void splay(int x)
{
sta[top=]=x;
for(int i=x;!isroot(i);i=fa[i])sta[++top]=fa[i];//i!
for(int i=top;i;i--)rever(sta[i]);
while(!isroot(x))
{
int y=fa[x],z=fa[y];
if(!isroot(y))
((c[y][]==x)^(c[z][]==y))?rotate(x):rotate(y);
rotate(x);
}
}
void access(int x)
{
for(int t=;x;c[x][]=t,pushup(x),t=x,x=fa[x])splay(x);//pushup
}
void makeroot(int x)
{
access(x); splay(x); rev[x]^=;
}
int find(int x)
{
access(x); splay(x); while(c[x][])x=c[x][]; return x;
}
void link(int x,int y)
{
makeroot(x); fa[x]=y;
}
void cut(int x,int y)
{
makeroot(x); access(y); splay(y);
fa[x]=; c[y][]=; pushup(y);
}
db dfs(int x,db v)
{
db ret=cal(x,v);
if(c[x][])ret+=dfs(c[x][],v);
if(c[x][])ret+=dfs(c[x][],v);
return ret;
}
void query1(int x,int y,db v)
{
if(find(x)!=find(y)){puts("unreachable"); return;}
makeroot(x); access(y); splay(y); db ret=;
//for(int t=x;t!=fa[y];t=fa[t])ret+=cal(t,v);
//printf("%.8e\n",ret);
printf("%.8e\n",dfs(y,v));
}
void query2(int x,int y)
{
if(find(x)!=find(y)){puts("unreachable"); return;}
makeroot(x); access(y); splay(y);
printf("%.8e\n",sum[y]);
}
int main()
{
n=rd(); m=rd(); scanf("%s",tp);
for(int i=;i<=n;i++)f[i]=rd(),scanf("%lf%lf",&A[i],&B[i]);
for(int i=,u,v;i<=m;i++)
{
scanf("%s",op);
if(op[]=='a'){u=rd()+; v=rd()+; link(u,v);}
else if(op[]=='d'){u=rd()+; v=rd()+; cut(u,v);}
else if(op[]=='m'){int x=rd()+; access(x); splay(x); f[x]=rd(); scanf("%lf%lf",&A[x],&B[x]); pushup(x);}//a,s,p
else
{
u=rd()+; v=rd()+; db x; scanf("%lf",&x);
if(tp[]=='')query2(u,v);
else query1(u,v,x);
}
}
}

55(60)分

参考了博客:https://www.cnblogs.com/zhoushuyu/p/8148732.html

A[x] 写成 A[i] 看了一个小时...

代码如下:

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
typedef double db;
int rd()
{
int ret=,f=; char ch=getchar();
while(ch<''||ch>''){if(ch=='-')f=; ch=getchar();}
while(ch>=''&&ch<='')ret=ret*+ch-'',ch=getchar();
return f?ret:-ret;
}
int const xn=1e5+;
int n,m,f[xn],fa[xn],c[xn][],jc[],rev[xn];
db A[xn],B[xn],g[xn][];
char tp[],op[];
bool isroot(int x){return c[fa[x]][]!=x&&c[fa[x]][]!=x;}
db t[];
void pushup(int x)
{
db p=;
if(f[x]==)
{
t[]=sin(B[x]); t[]=cos(B[x]); t[]=-t[]; t[]=-t[];
for(int i=;i<=;i++,p=p*A[x])
g[x][i]=p*t[i%]+g[c[x][]][i]+g[c[x][]][i];
}
if(f[x]==)
{
db tmp=exp(B[x]);
for(int i=;i<=;i++,p=p*A[x])
g[x][i]=p*tmp+g[c[x][]][i]+g[c[x][]][i];
}
if(f[x]==)
{
g[x][]=B[x]+g[c[x][]][]+g[c[x][]][];
g[x][]=A[x]+g[c[x][]][]+g[c[x][]][];
for(int i=;i<=;i++)g[x][i]=g[c[x][]][i]+g[c[x][]][i];
}
}
void rotate(int x)
{
int y=fa[x],z=fa[y],d=(c[y][]==x);
if(!isroot(y))c[z][c[z][]==y]=x;
fa[x]=z; fa[y]=x; fa[c[x][!d]]=y;
c[y][d]=c[x][!d]; c[x][!d]=y;
pushup(y); pushup(x);
}
int sta[xn],top;
void rever(int x)
{if(!rev[x])return; rev[c[x][]]^=; rev[c[x][]]^=; swap(c[x][],c[x][]); rev[x]=;}
void splay(int x)
{
sta[top=]=x;
for(int i=x;!isroot(i);i=fa[i])sta[++top]=fa[i];
for(int i=top;i;i--)rever(sta[i]);
while(!isroot(x))
{
int y=fa[x],z=fa[y];
if(!isroot(y))
((c[y][]==x)^(c[z][]==y))?rotate(x):rotate(y);
rotate(x);
}
}
void access(int x)
{
for(int t=;x;c[x][]=t,pushup(x),t=x,x=fa[x])splay(x);
}
void makeroot(int x)
{
access(x); splay(x); rev[x]^=;
}
int find(int x)
{
access(x); splay(x); while(c[x][])x=c[x][]; return x;
}
void link(int x,int y)
{
makeroot(x); fa[x]=y;
}
void cut(int x,int y)
{
makeroot(x); access(y); splay(y); fa[x]=c[y][]=; pushup(y);
}
void query(int x,int y,db v)
{
if(find(x)!=find(y)){puts("unreachable"); return;}
makeroot(x); access(y); splay(y);
db ret=,p=; for(int i=;i<=;i++,p=p*v)ret+=g[y][i]*p/jc[i];
printf("%.8e\n",ret);
}
int main()
{
n=rd(); m=rd(); scanf("%s",tp);
for(int i=;i<=n;i++)f[i]=rd(),scanf("%lf%lf",&A[i],&B[i]);
jc[]=; for(int i=;i<=;i++)jc[i]=jc[i-]*i;
for(int i=,u,v;i<=m;i++)
{
scanf("%s",op);
if(op[]=='a'){u=rd()+; v=rd()+; link(u,v);}
if(op[]=='d'){u=rd()+; v=rd()+; cut(u,v);}
if(op[]=='m'){int x=rd()+; splay(x); f[x]=rd(); scanf("%lf%lf",&A[x],&B[x]); pushup(x);}//A[x] not A[i]!
if(op[]=='t'){u=rd()+; v=rd()+; db x; scanf("%lf",&x); query(u,v,x);}
}
return ;
}

洛谷 P4546 & bzoj 5020 在美妙的数学王国中畅游 —— LCT+泰勒展开的更多相关文章

  1. bzoj 5020(洛谷4546) [THUWC 2017]在美妙的数学王国中畅游——LCT+泰勒展开

    题目:https://www.lydsy.com/JudgeOnline/problem.php?id=5020 https://www.luogu.org/problemnew/show/P4546 ...

  2. 题解 洛谷 P4546 【[THUWC2017]在美妙的数学王国中畅游】

    首先发现有连边和删边的操作,所以我们肯定要用\(LCT\)来进行维护. 接下来考虑如何进行\(LCT\)上的信息合并. \(f=1\),则函数为\(f(x)=sin(ax+b)\) \(f=2\),则 ...

  3. 【BZOJ5020】[LOJ2289]【THUWC2017】在美妙的数学王国中畅游 - LCT+泰勒展开

    咕咕咕?咕咕咕! 题意: Description 数字和数学规律主宰着这个世界. 机器的运转, 生命的消长, 宇宙的进程, 这些神秘而又美妙的过程无不可以用数学的语言展现出来. 这印证了一句古老的名言 ...

  4. BZOJ5020: [THUWC 2017]在美妙的数学王国中畅游(LCT,泰勒展开,二项式定理)

    Description 数字和数学规律主宰着这个世界.   机器的运转,   生命的消长,   宇宙的进程,   这些神秘而又美妙的过程无不可以用数学的语言展现出来.   这印证了一句古老的名言:   ...

  5. bzoj5020 & loj2289 [THUWC 2017]在美妙的数学王国中畅游 LCT + 泰勒展开

    题目传送门 https://lydsy.com/JudgeOnline/problem.php?id=5020 https://loj.ac/problem/2289 题解 这个 appear 和 d ...

  6. 「LOJ 2289」「THUWC 2017」在美妙的数学王国中畅游——LCT&泰勒展开

    题目大意: 传送门 给一个动态树,每个节点上维护一个函数为$f(x)=sin(ax+b)$.$f(x)=e^{ax+b}$.$f(x)=ax+b$中的一个. 支持删边连边,修改节点上函数的操作. 每次 ...

  7. 【BZOJ5020】【THUWC2017】在美妙的数学王国中畅游 LCT 泰勒展开

    题目大意 给你一棵树,每个点有一个函数\(f(x)\) 正弦函数 \(\sin(ax+b) (a\in[0,1],b\in[0,\pi],a+b\in[0,\pi])\) 指数函数 \(e^{ax+b ...

  8. [THUWC2017][bzoj5020] 在美妙的数学王国中畅游 [LCT+泰勒展开]

    题面 LOJ传送门 思路 这里很重要 它提示我们,把给定的三个函数泰勒展开,并用LCT维护每一项泰勒展开式的值,维护十几项就满足了题目的精度要求 我们考虑一个函数在0位置的泰勒展开 $f(x)=\su ...

  9. [THUWC2017]在美妙的数学王国中畅游 LCT+泰勒展开+求导

    p.s. 复合函数求导时千万不能先带值,再求导. 一定要先将符合函数按照求导的规则展开,再带值. 设 $f(x)=g(h(x))$,则对 $f(x)$ 求导: $f'(x)=h'(x)g'(h(x)) ...

随机推荐

  1. zoj 3356 Football Gambling II【枚举+精度问题】

    题目: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3356 http://acm.hust.edu.cn/vjudge/ ...

  2. Java编程中的一些常见问题汇总

    转载自  http://macrochen.iteye.com/blog/1393502 每天在写Java程序,其实里面有一些细节大家可能没怎么注意,这不,有人总结了一个我们编程中常见的问题.虽然一般 ...

  3. sublime 快捷键,左菜单乱码

    sublime 快捷键安装 packagecontrol https://packagecontrol.io/installation#st3 import urllib.request,os,has ...

  4. Python——Numpy的random子库

    NumPy的random子库 np.random.* np.random.rand() np.random.randn() np.random.randint() import numpy as np ...

  5. Python基础(5)_字符编码、文件处理

    一.文件读取过程: 1. 文本编辑器存取文件的原理(nodepad++,pycharm,word) 打开编辑器就打开了启动了一个进程,是在内存中的,所以在编辑器编写的内容也都是存放与内存中的,断电后数 ...

  6. python3.7.1 内置函数

    python3.7.1 内置函数列表 内置函数 abs() delattr() hash() memoryview() set() all() dict() help() min() setattr( ...

  7. Data Structure Graph: strong connectivity

    如果为undirected graph就是dfs或者bfs,如果都能visit则为连通O(V+E). 如果为directed graph就先dfs或者bfs,再reverse direct,再dfs或 ...

  8. python中返回函数

    Python的函数不但可以返回int.str.list.dict等数据类型,还可以返回函数! 例如,定义一个函数 f(),我们让它返回一个函数 g,可以这样写: def f(): print 'cal ...

  9. CommonJS与AMD、CMD

    随着JS模块化编程的发展,处理模块之间的依赖关系变得至关重要,随后诞生了CommonJS.AMD与CMD规范,但es6的import/export能代替他们,但因为本人所使用的webpack也支持前三 ...

  10. Linux查看硬盘使用情况

    df df - report file system disk space usage df是查看文件系统磁盘使用情况的命令.如: # df -h Filesystem Size Used Avail ...