摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=4734 算法:数位DP dp[pos][V]意味着当第pos位确定时,权值小于V的数有几个。 稍微计算一下,最高位得权值也不到1000,所以我把V的大小定义为了10000。 #include<bits/stdc++ 阅读全文
摘要:
题目链接http://acm.hdu.edu.cn/showproblem.php?pid=3652 #include<bits/stdc++.h> using namespace std; int dp[25][10][2][200];//dp[pos][last digit][13 is exi 阅读全文
摘要:
题目链接http://acm.hdu.edu.cn/showproblem.php?pid=3709 枚举中心位置,进行数位DP #include<bits/stdc++.h> using namespace std; typedef long long ll; ll dp[25][25][5000 阅读全文