随笔分类 -  数位DP

摘要:数位DP模板,记忆化+限制即可 #include<bits/stdc++.h> using namespace std; #define lowbit(x) ((x)&(-x)) typedef long long LL; int n, K, dp[5][105][3]; char str[105] 阅读全文
posted @ 2020-02-10 16:24 GRedComeT 阅读(751) 评论(0) 推荐(1)