[leetcode] 306. Additive Number

441 篇文章 0 订阅
284 篇文章 0 订阅

Description

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.

Given a string containing only digits ‘0’-‘9’, write a function to determine if it’s an additive number.

Note: Numbers in the additive sequence cannot have leading zeros, so sequence 1, 2, 03 or 1, 02, 3 is invalid.

Example 1:

Input: "112358"
Output: true 
Explanation: 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

Example 2:

Input: "199100199"
Output: true 
Explanation: The additive sequence is: 1, 99, 100, 199. 
             1 + 99 = 100, 99 + 100 = 199

Follow up:
How would you handle overflow for very large input integers?

分析

  • 这道题直观的做法是暴力做法,非递归的方法如下
  • 注意这里面用到了C++的一些字符串操作的函数,substr,stoll,to_string()等等,使得代码写得简洁易懂

代码

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=stoll(s1.c_str());
                long long d2=stoll(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;
    }
    
};

参考文献

306. Additive Number

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

农民小飞侠

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值