【bzoj2144】跳跳棋 lca+二分+模拟gcd

AC通道:http://www.lydsy.com/JudgeOnline/problem.php?id=2144

【题解】
一道关于lca+二分+模拟gcd的神题,蒟蒻不得不偷窥了题解
在序列上一共有2种操作:
中间可以往两侧跳
两侧仅有一个能往中间跳
那么所有的状态就能表示为一棵二叉树,第一种情况为其两个儿子,第二种为其父亲
问题转换为给定树上的两个结点,求其距离
我们发现若记前两个数差t1,后两个数差t2,不妨设t1
则左边最多往中间跳(t2-1)/t1次
然后只能右边往中间跳,是一个辗转相除的过程,即在logK的时间内我们可以用这种方法得到某个结点它向上K次后的结点,或者根节点,同时还可以顺便算下深度
那么只要求始终两个状态的深度d1,d2,将较深的调整到同一深度
然后二分/倍增求与lca的深度差x
ans=2*x+abs(d1-d2)
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define INF 1000000000
struct node{int v[5];}root1,root2;
int temp,temp1,temp2,ans,a[5],b[5];
inline int read()
{
    int x=0,f=1;  char ch=getchar();
    while(!isdigit(ch))  {if(ch=='-')  f=-1;  ch=getchar();}
    while(isdigit(ch))  {x=x*10+ch-'0';  ch=getchar();}
    return x*f;
}
node dfs(int p[],int k)
{
    node ans;
    for(int i=1;i<=3;i++)  ans.v[i]=p[i];
    int t1=p[2]-p[1],t2=p[3]-p[2];
    if(t1==t2)  return ans;
    if(t1t2)
    {
        int step=min(k,(t1-1)/t2);
        k-=step;  temp+=step;
        ans.v[2]-=step*t2;  ans.v[3]-=step*t2;
    }
    if(k)  return dfs(ans.v,k);
    else return ans;
}
bool operator!=(node a,node b){for(int i=1;i<=3;i++)if(a.v[i]!=b.v[i])return 1;return 0;}
int main()
{
    freopen("cin.in","r",stdin);
    freopen("cout.out","w",stdout);
    for(int i=1;i<=3;i++)  a[i]=read();
    for(int i=1;i<=3;i++)  b[i]=read();
    sort(a+1,a+4);  sort(b+1,b+4);
    root1=dfs(a,INF);  temp1=temp;  temp=0;
    root2=dfs(b,INF);  temp2=temp;  temp=0;
    if(root1!=root2)  {printf("NO\n");  return 0;}
    if(temp1>temp2)
    {
        swap(temp1,temp2);
        for(int i=1;i<=3;i++)swap(a[i],b[i]);
    }
    ans=temp2-temp1;
    root1=dfs(b,ans);
    for(int i=1;i<=3;i++)b[i]=root1.v[i];
    int l=0,r=temp1;
    while(l+1


 

你可能感兴趣的:(bzoj,lca,二分,模拟gcd)