codeforce 9C 找规律的思维题

来源:互联网 发布:新少林五祖 知乎 编辑:程序博客网 时间:2024/06/05 22:42

http://vjudge.net/contest/view.action?cid=47681#problem/C

Description

One beautiful July morning a terrible thing happened in Mainframe: a mean virus Megabyte somehow got access to the memory of his not less mean sister Hexadecimal. He loaded there a huge amount of n different natural numbers from 1 to n to obtain total control over her energy.

But his plan failed. The reason for this was very simple: Hexadecimal didn't perceive any information, apart from numbers written in binary format. This means that if a number in a decimal representation contained characters apart from 0 and 1, it was not stored in the memory. Now Megabyte wants to know, how many numbers were loaded successfully.

Input

Input data contains the only number n (1 ≤ n ≤ 109).

Output

Output the only number — answer to the problem.

Sample Input

Input
10
Output
2

Hint

For n = 10 the answer includes numbers 1 and 10.

用a[ i],数组来表示长度为i的10 ^i,说含有的可取的数。把输入的数字当做字符串来处理,如果一个位上的数大于1,就加上a[1~i],若为1,则就加上a[i],0则不加。

注意其实数据范围是1~10^10,,,题干描述不准确,我被骗wa了一次==

#include <stdio.h>#include <string.h>#include <iostream>#include <algorithm>using namespace std;char a[10];int sum[11]={0,1,2,4,8,16,32,64,128,256,512};int main(){    while(~scanf("%s",a+1))    {        int n=strlen(a+1);        int sum1=0;        for(int i=1;i<=n;i++)        {            if(a[i]>'1')            {                for(int j=1;j<=n-i+1;j++)                    sum1+=sum[j];                break;            }            if(a[i]=='1')                sum1+=sum[n-i+1];        }        printf("%d\n",sum1);    }    return 0;}


0 0