[LibreOJ β Round]ZQC的树列

题目描述

见LOJ。

做法

显然对于每一段数字,要么可选要么必选。
假如有t个,若必选,则方案为2^t-1,否则为2^t。
因此只有1、2、3就可以构造所有情况。
尝试把n拆分成2^t-1以及2^t的乘积。
这个用dfs即可。

#include<cstdio>
#include<algorithm>
#include<cmath>
#define fo(i,a,b) for(i=a;i<=b;i++)
using namespace std;
typedef long long ll;
ll a[100000+10],sta[100000+10],b[100000+10];
ll i,j,k,l,t,m,tot,top,now,cnt;
ll n;
bool czy;
ll random(ll x){
    ll t=rand()%10000;
    t=t*10000+rand()%10000;
    t=t*10000+rand()%10000;
    t=t*10000+rand()%10000;
    return t%x;
}
ll mul(ll a,ll b,ll p){
    if (!b) return 0;
    ll t=mul(a,b/2,p);
    t=(t+t)%p;
    if (b%2) t=(t+a)%p;
    return t;
}
ll qsm(ll x,ll y,ll mo){
    if (!y) return 1;
    ll t=qsm(x,y/2,mo);
    t=mul(t,t,mo);
    if (y%2) t=mul(t,x,mo);
    return t;
}
bool Miller_Rabin(ll n){
    if (n==1) return 0;
    int s=5,t=0,i;
    ll a,p,k=n-1;
    while (k%2==0) k/=2,t++;
    while (s--){
        a=random(n-1)+1;
        p=a=qsm(a,k,n);
        fo(i,1,t){
            a=mul(a,a,n);
            if (a==1&&p!=1&&p!=n-1) return 0;
            p=a;
        }
        if (a!=1) return 0;
    }
    return 1;
}
ll gcd(ll a,ll b){
    return b?gcd(b,a%b):a;
}
ll Pollard_Rho(ll n){
    ll k,x,y,c,d,i=1;
    while (1){
        c=random(n-1);
        k=2;y=x=random(n);
        i=1;
        while (1){
            y=(mul(y,y,n)+c)%n;
            d=gcd(abs(x-y),n);
            if (i==k) x=y,k<<=1;
            i++;
            if (d!=1) break;
        }
        if (d!=n) return d;
    }
}
void work(ll n){
    if (Miller_Rabin(n)){
        sta[++top]=n;
        return;
    }
    ll p=Pollard_Rho(n);
    ll q=n/p;
    work(p);work(q);
}
bool pd(ll n){
    while (n%2==0) n/=2;
    if (n==1) return 1;else return 0;
}
void dfs(ll n){
    if (pd(n)){
        cnt=0;
        while (n%2==0) cnt++,n/=2;
        czy=1;
        return;
    }
    ll t=4,l=2;
    while (t-1<=n){
        if (n%(t-1)==0){
            top++;
            b[top]=l;
            dfs(n/(t-1));
            if (czy) return;
            top--;
        }
        t*=2;
        l++;
    }
}
int main(){
    czy=0;
    scanf("%lld",&n);
    if (n==1){
        printf("1\n");
        printf("1\n");
        return 0;
    }
    dfs(n);
    /*t=0;
    a[tot=1]=1;
    now=3;
    fo(i,1,top)
        if (sta[i]==2) t++;
        else{
            k=sta[i]+1;
            l=0;
            while (k>1){
                if (k%2==1) break;
                k/=2;
                l++;
            }
            if (k>1){
                czy=0;
                break;
            }
            while (l){
                a[++tot]=now;
                l--;
            }
            if (now==1) now=3;else now=1;
        }
    if (!czy){
        printf("qnq\n");
        return 0;
    }
    while (t){
        a[++tot]=2;
        t--;
    }
    a[++tot]=now;*/
    if (!czy){
        printf("qnq\n");
        return 0;
    }
    a[tot=1]=1;
    now=3;
    fo(i,1,top){
        k=b[i];
        while (k){
            a[++tot]=now;
            k--;
        }
        if (now==1) now=3;else now=1;
    }
    while (cnt){
        a[++tot]=2;
        cnt--;
    }
    a[++tot]=now;
    printf("%lld\n",tot);
    fo(i,1,tot) printf("%lld ",a[i]);
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值