摘要: [Algo] 路径信息 1. 最长公共子序列 // 1. 最长公共子序列 // https://www.nowcoder.com/practice/4727c06b9ee9446cab2e859b4bb86bb8 void dp1(string& s1, string& s2, vector<vec 阅读全文
posted @ 2025-06-05 14:00 yaoguyuan 阅读(8) 评论(0) 推荐(0)
摘要: [Algo] 数位dp 1. 最大为N的数字组合 // 1. 最大为N的数字组合 // https://leetcode.cn/problems/numbers-at-most-n-given-digit-set/ int func1(vector<int>& digit, int n, int l 阅读全文
posted @ 2025-06-05 14:00 yaoguyuan 阅读(11) 评论(0) 推荐(0)