zoukankan      html  css  js  c++  java
  • *HDU 2451 数学

    Simple Addition Expression

    Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 1723    Accepted Submission(s): 675


    Problem Description
    A luxury yacht with 100 passengers on board is sailing on the sea in the twilight. The yacht is ablaze with lights and there comes out laughers and singing from the hall where an evening party is in full swing. People are singing, dancing and enjoying themselves.

    The yacht is equipped with the most advanced navigation and driving system which can all be manipulated by a computer. When the captain notices that there is only gentle breeze and the sea waves are not high, he starts the autopilot. The yacht sails forward smoothly, ploughs the waves. When it’s completely dark, the passengers start to feel a little funny for sudden forward rushes or sudden decelerations or slight swings. The captain immediately walks to the driving platform and switches the autopilot to human manipulation. The yacht returns back to normal and the party restarts. Laughers come back, too.

    The captain summons the engineer on board to do a thorough check of the navigation system. It turns out that only the computer is out of order, but the exact failure is still unclear. There is a computer scientist among the passengers who is also invited to the cab to give a hand. He first inputs several groups of data to test the computer. When he inputs 1+2+3, the computer outputs 6, which is exactly right. But when he inputs 4+5+6, the computer outputs 5, which is wrong. Then he inputs 12+13+14, and gets 39, another right answer, while he inputs 14+15+16, and gets 35, another wrong answer. After the test, the computer scientist says smilingly: “the failure is clear now. The computer's adder can not carry." After excluding the failure, the captain restarts the autopilot and the yacht returns back to normal, sailing smoothly on the sea.

    The captain and the engineer invite the computer scientist to sit down and have a talk. The computer scientist tells a story as following:

    A former mathematician defined a kind of simple addition expression.
    If there is an expression (i) + (i+1) + (i+2), i>=0, when carried out additive operations, no position has a carry, it is called simple addition expression.

    For instance, when i equals 0, 0+1+2 is a simple addition expression, meanwhile when i equals 11, 11+12+13 is a simple addition expression, too. Because of that no position has a carry.

    However, when i equals 3, 3+4+5 is not a simple addition expression, that is because 3+4+5 equals 12, there is a carried number from unit digit to tens digit. In the same way, when i equals 13, 13+14+15 is not a simple addition expression, either. However, when i equals 112, 112+113+114 is a simple addition expression. Because 112+113+114 equals 339, there is no carry in the process of adding.

    when the students have got the definition of simple addition expression, the mathematician puts forward a new question: for a positive integer n, how many simple addition expressions exist when i<n. In addition, i is the first number of a simple addition expression.

    when the value of n is large enough, the problem needs to be solved by means of computer.

     
    Input
    There are several test cases, each case takes up a line, there is an integer n (n<10^10).

     
    Output
    Output the number of all simple addition expressions when i<n.

     
    Sample Input
    1 2 3 4 10 11
     
    Sample Output
    1 2 3 3 3 4
     
    Source
     
    题意:
    问小于n的数i中i+i+1+i+2不会产生进位的i有多少个。
    代码:
     1 //最近一段时间被数学搞晕了,各种烦躁,迷糊。这道题可以把数拆开来,首位可以取1,2,3,中间可以取0,1,2,3,最后一位可以取0,1,2。有多少个i,比如拆2345,
     2 //先计算0~999有多少个,再计算1000~1999有多少个,再计算2000上面0~99,100~199,200~299有多少个,再计算300上面........如果第一位大于3,比如4321,那么他
     3 //和9999没什么区别,中间的几位也是同样的道理。
     4 #include<bitsstdc++.h>
     5 #define ll long long
     6 using namespace std;
     7 char s[12];
     8 ll f[12];
     9 int main()
    10 {
    11     f[0]=0;f[1]=3; //10以下的有几个,下面的同理
    12     for(int i=2;i<=11;i++)
    13     {
    14         f[i]=4*f[i-1];
    15     }
    16     while(scanf("%s",s)!=EOF)
    17     {
    18         ll ans=0;
    19         int len=strlen(s);
    20         for(int i=0;i<len;i++)
    21         {
    22             if(i==0&&i!=len-1)
    23             {
    24                 if(s[i]-'0'>3)
    25                 {ans+=f[len-i];break;}
    26                 else ans+=(s[i]-'0')*f[len-i-1];
    27             }
    28             else if(i!=0&&i!=len-1)
    29             {
    30                 if(s[i]-'0'>3)
    31                 {ans+=f[len-i];break;}
    32                 else ans+=(s[i]-'0')*f[len-i-1];
    33             }
    34             else if(i==len-1)
    35             ans+=s[i]-'0'>3?3:s[i]-'0';
    36         }
    37         printf("%lld
    ",ans);
    38     }
    39     return 0;
    40 }
  • 相关阅读:
    面向对象
    用JS添加和删除class类名
    偶然
    js-cookie的用法
    eleemnt-ui修改主题颜色
    router.go,router.push,router.replace的区别
    vue生产环境清除console.log
    特别关心
    echart
    20182330魏冰妍_预备作业
  • 原文地址:https://www.cnblogs.com/--ZHIYUAN/p/6098684.html
Copyright © 2011-2022 走看看