Description

The cows, as you know, have no fingers or thumbs and thus are unable to play Scissors, Paper, Stone' (also known as 'Rock, Paper, Scissors', 'Ro, Sham, Bo', and a host of other names) in order to make arbitrary decisions such as who gets to be milked first. They can't even flip a coin because it's so hard to toss using hooves.

They have thus resorted to "round number" matching. The first cow picks an integer less than two billion. The second cow does the same. If the numbers are both "round numbers", the first cow wins,

otherwise the second cow wins.

A positive integer \(N\) is said to be a "round number" if the binary representation of \(N\) has as many or more zeroes than it has ones. For example, the integer 9, when written in binary form, is 1001. 1001 has two zeroes and two ones; thus, 9 is a round number. The integer 26 is 11010 in binary; since it has two zeroes and three ones, it is not a round number.

Obviously, it takes cows a while to convert numbers to binary, so the winner takes a while to determine. Bessie wants to cheat and thinks she can do that if she knows how many "round numbers" are in a given range.

Help her by writing a program that tells how many round numbers appear in the inclusive range given by the input (1 ≤ \(Start\) < \(Finish\) ≤ 2,000,000,000).

Input

Line 1: Two space-separated integers, respectively \(Start\) and \(Finish\).

Output

Line 1: A single integer that is the count of round numbers in the inclusive range \(Start..Finish\)

Sample Input

2 12

Sample Output

6

Source

USACO 2006 November Silver

Solution

简化版题意:求出一个区间[a,b]中有多少个“Round Number”,一个数是“Round Number”当且仅当它的二进制表示法中0的个数>=1的个数,其中\(1 \leqslant A, B \leqslant 2,000,000,000\)。

我们可以根据题意先写一个简单的暴力:

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <cmath> using namespace std; inline int gi()
{
int f = 1, x = 0;
char c = getchar(); while (c < '0' || c > '9')
{
if (c == '-')
f = -1;
c = getchar();
} while (c >= '0' && c <= '9')
{
x = x * 10 + c - '0';
c = getchar();
} return f * x;
}
//以上不解释 inline bool pd(int x)//判断一个数是不是"Round Number"
{
int y = 0, z = 0;//y是存二进制数中1的个数,z是存0的个数 while (x > 0)
{
if (x & 1)//如果这一位是0
{
++y;//y就加1
}
else
{
++z;//否则z就加1
} x = x >> 1;//x除以2
} return z >= y;//这个语句的意思是:如果z>=y,就返回true,否则返回false。
} int a, b, sum;//a、b是题目中的意思,sum是答案 int main()
{
a = gi(), b = gi();//输入a、b for (int i = a; i <= b; i++)//从a到b枚举
{
if (pd(i))//如果i是“Round Number"
{
++sum;//sum就加一
}
} printf("%d", sum);//最后输出sum return 0;//结束
}

因为\(1 \leqslant A, B \leqslant 2,000,000,000\),很明显,以上代码小数据能AC,但是大数据会TLE。

因此,我们要使用一个更加高效的算法——数位DP。

什么是数位DP呢?可以参考这篇文章:http://www.cnblogs.com/real-l/p/8540124.html

回到这一题:

我们设Rn[n,m]表示区间[n,m]中Round Number的个数,我们利用前缀和,就有:

Rn[a,b] = Rn[0, b] - Rn[0, a - 1]

记忆化搜索思路:

设dp[a][n0][n1]表示从高往低到达第a位时含有n0个0和n1个1在后面任意填时该状态下的总个数。

注意加一个变量flag来判断是否含有前导0。

直接DP思路:

先预处理出dp[i][j]表示前i位有j个0的方案数,然后从高位数位到低位数位DP。

Code

记忆化搜索:

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <cmath> using namespace std; inline int gi()
{
int f = 1, x = 0;
char c = getchar(); while (c < '0' || c > '9')
{
if (c == '-')
f = -1;
c = getchar();
} while (c >= '0' && c <= '9')
{
x = x * 10 + c - '0';
c = getchar();
} return f * x;
} int dp[35][35][35], wei[35]; int dfs(int a, int n0, int n1, int ddd, int flag)
{
if (a == 0)
{
if (flag == 0)//这里不判断flag==0也可以,判不判断的区别在于是不是把0算上,判断就不把0算上了
{
if (n0 >= n1)
{
return 1;
}
else
{
return 0;
}
} return 0;
} if (ddd == 0 && dp[a][n0][n1] != -1)
{
return dp[a][n0][n1];
} int ed = ddd ? wei[a] : 1, ans = 0, nu0, nu1; for (int i = 0; i <= ed; i++)
{
if (flag && i == 0)
{
nu0 = nu1 = 0;
}
else
{
if (i == 0)
{
nu0 = n0 + 1, nu1 = n1;
}
else
{
nu0 = n0, nu1 = n1 + 1;
}
} ans = ans + dfs(a - 1, nu0, nu1, ddd && i == ed, flag && i == 0);
} if (ddd == 0)
{
dp[a][n0][n1] = ans;
} return ans;
} int solve(int x)
{
int tot = 0; while (x)
{
wei[++tot] = x & 1; x = x >> 1;
} return dfs(tot, 0, 0, 1, 1);
} int a, b; int main()
{
memset(dp, -1, sizeof(dp)); a = gi(), b = gi(); printf("%d\n", solve(b) - solve(a - 1)); return 0;
}

动态规划代码:

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <cmath> using namespace std; inline int gi()
{
int f = 1, x = 0;
char c = getchar(); while (c < '0' || c > '9')
{
if (c == '-')
f = -1;
c = getchar();
} while (c >= '0' && c <= '9')
{
x = x * 10 + c - '0';
c = getchar();
} return f * x;
} int dp[40][40]; inline int getans(int x)
{
int t = x, wei[40], len = 0, sum = 0, n0 = 0, n1 = 0;; while (t)
{
wei[++len] = t & 1; t = t >> 1;
} for (int i = len - 1; i >= 1; i--)//这里先把第len位变为0,然后一次枚举最高的位数在第i位
{
for (int j = 0; j <= i - 1; j++)
{
if (j >= i - j)
{
sum = sum + dp[i - 1][j];
}
}
} n1 = 1; for (int i = len - 1; i >= 1; i--)//这里是在第len位为1的情况下进行dp
{
if (wei[i] == 1)
{
if (i == 1)
{
if (n0 + 1 >= n1)
{
++sum;
}
}
else
{
for (int j = 0; j <= i - 1; j++)
{
if (j + n0 + 1 >= n1 + i - 1 - j)
{
sum = sum + dp[i - 1][j];
}
}
} ++n1;
}
else
{
++n0;
}
} return sum;
} int a, b; int main()
{
a = gi(), b = gi(); memset(dp, 0, sizeof(dp)); dp[1][1] = 1, dp[1][0] = 1; for (int i = 1; i <= 32; i++)
{
for (int j = 0; j <= i; j++)
{
dp[i + 1][j] = dp[i + 1][j] + dp[i][j], dp[i + 1][j + 1] = dp[i + 1][j + 1] + dp[i][j];
}
} printf("%d", getans(b + 1) - getans(a)); return 0;
}

题解【POJ3252】Round Numbers的更多相关文章

  1. [BZOJ1662][POJ3252]Round Numbers

    [POJ3252]Round Numbers 试题描述 The cows, as you know, have no fingers or thumbs and thus are unable to ...

  2. POJ3252 Round Numbers —— 数位DP

    题目链接:http://poj.org/problem?id=3252 Round Numbers Time Limit: 2000MS   Memory Limit: 65536K Total Su ...

  3. poj3252 Round Numbers(数位dp)

    题目传送门 Round Numbers Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 16439   Accepted: 6 ...

  4. poj3252 Round Numbers

    Round Numbers Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 7625   Accepted: 2625 Des ...

  5. poj3252 Round Numbers (数位dp)

    Description The cows, as you know, have no fingers or thumbs and thus are unable to play Scissors, P ...

  6. POJ3252 Round Numbers 题解 数位DP

    题目大意: 求区间 \([x,y]\) 范围内有多少数的二进制表示中的'0'的个数 \(\ge\) '1'的个数. 解题思路: 使用 数位DP 解决这个问题. 我们设状态 f[pos][num0][n ...

  7. POJ3252 Round Numbers 【数位dp】

    题目链接 POJ3252 题解 为什么每次写出数位dp都如此兴奋? 因为数位dp太苟了 因为我太弱了 设\(f[i][0|1][cnt1][cnt0]\)表示到二进制第\(i\)位,之前是否达到上界, ...

  8. POJ3252 Round Numbers(不重复全排列)

    题目问区间有多少个数字的二进制0的个数大于等于1的个数. 用数学方法求出0到n区间的合法个数,然后用类似数位DP的统计思想. 我大概是这么求的,确定前缀的0和1,然后后面就是若干个0和若干个1的不重复 ...

  9. poj3252 Round Numbers[数位DP]

    地址 拆成2进制位做dp记搜就行了,带一下前导0,将0和1的个数带到状态里面,每种0和1的个数讨论一下,累加即可. WA记录:line29. #include<iostream> #inc ...

随机推荐

  1. ASP.NET Identity系列教程-2【Identity入门】

    https://www.cnblogs.com/r01cn/p/5177708.html13 Identity入门 Identity is a new API from Microsoft to ma ...

  2. 关于Hosts与network的异同之处

    1.hosts文件,路径:/etc/hosts,此文间是在网络上使用的,用于解析计算机名称和IP地址的映射关系,功能相当于windows下面的c:\windows\system32\drivers\e ...

  3. PAT (Basic Level) Practice (中文)1048 数字加密 (20 分)

    本题要求实现一种数字加密方法.首先固定一个加密用正整数 A,对任一正整数 B,将其每 1 位数字与 A 的对应位置上的数字进行以下运算:对奇数位,对应位的数字相加后对 13 取余——这里用 J 代表 ...

  4. ros下怎么查看usb设备在哪个端口

    检查usb设备是否有权限以及在哪个端口,或者lsusb ls -l /dev |grep ttyUSB 查到设备端口,在启动文件下配置相应的端口号 <param name="seria ...

  5. linux100讲——03 什么是linux

    1.linux 有两种含义: 一种是linus 编写的开源操作系统的内核 另一种是广义的操作系统 2.linux的第一印象 服务端操作系统和客户端操作系统要做的事情不一样 命令行操作方式与图形界面的差 ...

  6. script标签引入脚本的引入位置与效果

    用script标签引入脚本的引入位置大致有两种情况: 1,在head中引入: 2,在body末尾引入: 浏览器由上到下解析代码,正常情况下,先解析head中的代码,在解析body中的代码:放在head ...

  7. Linux虚拟化 xen的工具栈介绍

    试验环境centos6.10 xen的工具栈介绍: 查看xl目录的帮助:xl help 查看xen下安装了哪些虚拟机:xl list # xl list Domain-0 Name ID Mem VC ...

  8. MongoDB一些应用知识点

    1.在生产环境中至少需要三个节点的复制集架构. 2.在多数的场景中WT引擎比MMAPv1更加出色. 3.要想达到极致的速度,那么一定要给MongoDB足够的内存. 4.避免使用短链接,充分利用连接池, ...

  9. markdwon编辑公式入门

    上标与下标   上标和下标分别使用^ 与_ ,例如\(x_i^2\)表示的是:.   默认情况下,上.下标符号仅仅对下一个组起作用.一个组即单个字符或者使用{..} 包裹起来的内容.如果使用\(10^ ...

  10. ContestHunter 1201 最大子序和

    描述 输入一个长度为n的整数序列,从中找出一段不超过m的连续子序列,使得整个序列的和最大. 例如 1,-3,5,1,-2,3 当m=4时,S=5+1-2+3=7当m=2或m=3时,S=5+1=6 输入 ...