LeetCode 902. 最大为 N 的数字组合

本文探讨了如何使用暴力递归和数位动态规划优化算法解决LeetCode题目902,涉及两种方法的代码实现及对比,重点在于提高查找最大N位数字组合的效率。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

LeetCode 902. 最大为 N 的数字组合
在这里插入图片描述
暴力递归

class Solution {
public:
    string s;
    int dfs(vector<string> digits, int u, bool limit, bool first)
    {
        if(u == s.size()) return first == false;
        int res = 0;
        if(first)
            res += dfs(digits, u + 1, false, true);
        char up = limit ? s[u] : '9';
        for(auto& d : digits)
        {
            if(d[0] > up) break;
            res += dfs(digits, u + 1, limit && up == d[0], false);
        }
        return res;
    }
    int atMostNGivenDigitSet(vector<string>& digits, int n) {
        s = to_string(n);
        return dfs(digits, 0, true, true);

    }
};

数位DP

const int N = 12;
class Solution {
public:
    string s;
    int f[N];
    //limit 是否受上一位限制 first:是否为第一位
    int dfs(vector<string> digits, int u, bool limit, bool first)
    {
        if(u == s.size()) return first == false;
        if(!limit && !first && f[u] >= 0) return f[u];
        int res = 0;
        if(first)
            res += dfs(digits, u + 1, false, true);
        char up = limit ? s[u] : '9';
        for(auto& d : digits)
        {
            if(d[0] > up) continue;
            res += dfs(digits, u + 1, limit && up == d[0], false);
        }
        if(!limit && !first) f[u] = res;
        return res;
    }
    int atMostNGivenDigitSet(vector<string>& digits, int n) {
        memset(f, -1, sizeof f);
        s = to_string(n);
        return dfs(digits, 0, true, true);
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值