Leetcode 842. 将数组拆分成斐波那契序列(模拟)

Description
在这里插入图片描述

Solution
当类Fibonacci数列的前两项确定时,整个序列便确定了, 故我们只需要枚举前两项,在check一下是否合法即可
小模拟

Code

class Solution {
public:
    #define inf 0x3f3f3f3f
    int toint(string s) {
        if(s.size() > 10) return -1;
        long long res = 0;
        for(int i = 0;i < s.size();++i) {
            res = (res * 10 + (s[i] - '0'));
        }
        if(res > ((1ll*1<<31)-1)) return -1;
        return (int)res;
    }
    vector<int> splitIntoFibonacci(string S) {
        int sz = S.size();
        vector<int>res;
        for(int i = 1;i < sz;++i) {
            for(int j = 1;i + j < sz;++j) {
                string f1 = S.substr(0,i), f2 = S.substr(i,j);
                if((i != 1 && f1[0] == '0') || (j != 1 && f2[0] == '0')) continue;
                res.clear();
                int x1 = toint(f1), x2 = toint(f2);
                if(x1 == -1 || x2 == -1) continue;
                res.push_back(x1);
                res.push_back(x2);
                int st = i + j;
                bool flag = true;
                for(int k = i + j;k < sz;++k) {
                    string tmp = S.substr(st, (k-st+1));
                    if((k-st+1) != 1 && tmp[0] == '0') {flag = false;break;}
                    int x3 = toint(tmp);if(x3 == -1) break;
                    if(1ll*x3 != (1ll*res[res.size()-1] + res[res.size()-2])) {continue;}
                    res.push_back(x3);
                    st = k+1;
                }
                if(st != sz) flag = false;
                if(flag) return res; else res.clear();
            }
        }
        return res;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值