【Leetcode】Additive Number

给定一个只包含数字的字符串,判断它是否能形成有效的加法数列。有效数列需满足至少三个数字,且除了前两个数字外,每个后续数字都是前两个数字的和。注意数列中不能有前导零。问题还涉及如何处理非常大的输入整数的溢出情况。解决方案是通过遍历找到前两个数字,并检查后续数字是否符合加法规则。
摘要由CSDN通过智能技术生成

题目链接:https://leetcode.com/problems/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?

思路:

如果是additive number,则n1+n2=n3,n2+n3一定在字符串中,即可以递推,若不在,则不是additive number。

所以思路就是遍历找到第一、二个数,看它们是否满足上述条件。前导零的问题,以前做题的时候也遇到过,注意即可。

BigInteger要自己手动再AC代码前import java.math.BigInteger 否则会找不到此类。


算法:

	public boolean isAdditiveNumber(String num) {
		for(int i=1;i<num.length();i++){
			if(i>1&&num.charAt(0)=='0')
				return false;
			BigInteger n1 = new BigInteger(num.substring(0,i));
			for(int j=i+1;j<num.length();j++){
				BigInteger n2 = new BigInteger(num.substring(i,j));
				if(j>i+1&&num.charAt(i)=='0')
					break;
				if(isvalid(n1,n2,num.substring(j))){
					return true;
				}
			}
		}
		return false;
	}
	

	private boolean isvalid(BigInteger n1, BigInteger n2, String num) {
		if(num.length()==0)
			return true;
		BigInteger n3 = n2.add(n1);
		return num.startsWith(n3.toString())&&isvalid(n2,n3,num.substring(n3.toString().length()));
	}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值