代码拉取完成,页面将自动刷新
// Time: O(n^3)
// Space: O(n)
class Solution {
public:
bool isAdditiveNumber(string num) {
for (int i = 1; i < num.length(); ++i) {
for (int j = i + 1; j < num.length(); ++j) {
string s1 = num.substr(0, i), s2 = num.substr(i, j - i);
if ((s1.length() > 1 && s1[0] == '0') ||
(s2.length() > 1 && s2[0] == '0')) {
continue;
}
string next = add(s1, s2);
string cur = s1 + s2 + next;
while (cur.length() < num.length()) {
s1 = s2;
s2 = next;
next = add(s1, s2);
cur += next;
}
if (cur == num) {
return true;
}
}
}
return false;
}
private:
string add(const string& m, const string& n) {
string res;
int res_length = max(m.length(), n.length()) ;
int carry = 0;
for (int i = 0; i < res_length; ++i) {
int m_digit_i = i < m.length() ? m[m.length() - 1 - i] - '0' : 0;
int n_digit_i = i < n.length() ? n[n.length() - 1 - i] - '0' : 0;
int sum = carry + m_digit_i + n_digit_i;
carry = sum / 10;
sum %= 10;
res.push_back('0' + sum);
}
if (carry) {
res.push_back('0' + carry);
}
reverse(res.begin(), res.end());
return res;
}
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。