随笔分类 -  算法笔记 / 动态规划

摘要:code: #include<iostream> #include<cstring> using namespace std; const int N=16; int d[N],n; int dp[N]; int dfs(int pos,bool limit){ if(pos==0) return 阅读全文
posted @ 2025-08-20 19:05 xdhking 阅读(5) 评论(0) 推荐(0)