[BZOJ1662][Usaco2006 Nov]Round Numbers 圆环数

31 篇文章 0 订阅
4 篇文章 0 订阅

原题地址

数位DP…

其实并不难写,然而状态想了很久,数学还是太渣OLZ…

AC code:

#include <cstdio>
const int N=101;
int L,R,l1,l2;
int a1[N],a2[N],t1[N],t2[N];
int c[32][32];

int work(int x[],int y[],int len,int p,int tot){
    if(!len) return 0;
    int c0=0,c1=0,i=len;
    while((!y[i])&&i>p) i--;
    for(;i>p;i--){
        if(!y[i]) c0++;
        else c1++;
    }
    if(!p){
        if(c0>=c1) tot++;
        return tot;
    }
    if(x[p]){
        if(c1){
            for(int j=p-1;j+c0+1>=p-1-j+c1&&j>=0;j--) tot+=c[p-1][j];
        }
        else{
            for(int j=p-1;j;j--){
                for(int k=j-1;k>=j-1-k+1;k--) tot+=c[j-1][k];
            }
        }
        y[p]=1;
        return work(x,y,len,p-1,tot);
    }
    else return work(x,y,len,p-1,tot);
}

int main(){
    c[0][0]=1;
    for(int i=1;i<32;i++){
        c[i][0]=1;
        for(int j=1;j<=i;j++) c[i][j]=c[i-1][j-1]+c[i-1][j];
    }
    scanf("%d%d",&L,&R);
    L--;
    while(L){
        a1[++l1]=L&1;
        L>>=1;
    }
    while(R){
        a2[++l2]=R&1;
        R>>=1;
    }
    int ans2=work(a2,t2,l2,l2,0),ans1=work(a1,t1,l1,l1,0);
    printf("%d\n",ans2-ans1);

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值