数位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;
}