博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ3252 Round Numbers
阅读量:5093 次
发布时间:2019-06-13

本文共 2695 字,大约阅读时间需要 8 分钟。

POJ3252 Round Numbers
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 4877   Accepted: 1664

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
********************************************************
题目大意:对于某个数n,把它写成二进制,如果他的二进制中0的个数不比1的个数少,那么这个数就是一个round数,求给定一个区间它中间的round数的个数。
解题思路:推数学公式。真纠结。
#include 
#include
#include
#include
using namespace std;int dp[40][40];string cha(int a){ if(a==1)return "1"; if(a==0)return "0"; string temp; while(a) { temp.push_back(a%2+'0'); a/=2; } string kk; int len=temp.size(); for(int i=len-1;i>=0;i--) kk.push_back(temp[i]); return kk;}int rans(string str){ int ret=0,len=str.size(); if(len==1)return 0; if(len==2)return 1; if(len==3)return 2; for(int i=len-2;i>=1;i--) if(i&1) ret+=((1<
>1); else ret+=((1<
>1; int now=1; for(int h=1;h
=now;i--) ret+=dp[n][i]; now+=2; } } if(str[len-1]=='0'&&now<=0)ret++; return ret;}int main(){ for(int i=1;i<=31;i++) { dp[i][0]=1; for(int j=1;j
>sta>>ed; cout<
<

  

 

转载于:https://www.cnblogs.com/Fatedayt/archive/2011/11/02/2232967.html

你可能感兴趣的文章
HDU 4635 Strongly connected
查看>>
格式化输出数字和时间
查看>>
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
(旧笔记搬家)struts.xml中单独页面跳转的配置
查看>>
不定期周末福利:数据结构与算法学习书单
查看>>
strlen函数
查看>>
关于TFS2010使用常见问题
查看>>
软件工程团队作业3
查看>>
火狐、谷歌、IE关于document.body.scrollTop和document.documentElement.scrollTop 以及值为0的问题...
查看>>
Python编译错误总结
查看>>
URL编码与解码
查看>>
Eclipse 安装SVN插件
查看>>
阿里云服务器CentOS6.9安装Mysql
查看>>
剑指offer系列6:数值的整数次方
查看>>
js 过滤敏感词
查看>>
poj2752 Seek the Name, Seek the Fame
查看>>
软件开发和软件测试,我该如何选择?(蜗牛学院)
查看>>
基本封装方法
查看>>
bcb ole拖拽功能的实现
查看>>