zoukankan      html  css  js  c++  java
  • 306 Additive Number 加法数

    Additive number is a string whose digits can form additive sequence.
    A valid additive sequence should contain at least three numbers. Except for the first two numbers, each subsequent number in the sequence must be the sum of the preceding two.
    For example:
    "112358" is an additive number because the digits can form an additive sequence: 1, 1, 2, 3, 5, 8.
    1 + 1 = 2, 1 + 2 = 3, 2 + 3 = 5, 3 + 5 = 8
    "199100199" is also an additive number, the additive sequence is: 1, 99, 100, 199.
    1 + 99 = 100, 99 + 100 = 199
    Note: Numbers in the additive sequence cannot have leading zeros, so sequence 1, 2, 03 or 1, 02, 3 is invalid.
    Given a string containing only digits '0'-'9', write a function to determine if it's an additive number.
    Follow up:
    How would you handle overflow for very large input integers?

    详见:https://leetcode.com/problems/additive-number/description/

    C++:

    class Solution {
    public:
        bool isAdditiveNumber(string num) {
            for(int i=1;i<num.size();++i)
            {
                for(int j=i+1;j<num.size();++j)
                {
                    string s1=num.substr(0,i);
                    string s2=num.substr(i,j-i);
                    long long d1=atoll(s1.c_str()),d2=atoll(s2.c_str());
                    if((s1.size()>1&&s1[0]=='0')||(s2.size()>1&&s2[0]=='0'))
                    {
                        continue;
                    }
                    long long next=d1+d2;
                    string nexts=to_string(next);
                    string now=s1+s2+nexts;
                    while(now.size()<num.size())
                    {
                        d1=d2;
                        d2=next;
                        next=d1+d2;
                        nexts=to_string(next);
                        now+=nexts;
                    }
                    if(now==num)
                    {
                        return true;
                    }
                }
            }
            return false;
        }
    };
    

     参考:https://www.cnblogs.com/grandyang/p/4974115.html

  • 相关阅读:
    程序员的九重境界,你是第几重?
    一个常用的正则表达验证类(转载)
    学习程序设计的态度
    科技期刊学术不端文献检测系统(转载)
    用GridView设计固定行数的入库单报表
    JavaScript技巧集
    线程的概念
    java实验三 类的继承与多态
    常见的网络攻击手段及防御方法
    类和对象的概念(转载)
  • 原文地址:https://www.cnblogs.com/xidian2014/p/8831036.html
Copyright © 2011-2022 走看看