描述 http://www.lydsy.com/JudgeOnline/problem.php?id=1833 统计\(a~b\)中数字\(0,1,2,...,9\)分别出现了多少次. 分析 数位dp真是细节又多又容易出错,我都懒得看题解,所以也就懒得写题解了... 注意细节吧还是... #include <bits/stdc++.h> using namespace std; typedef long long ll; ll a,b; ll A[],B[],num[]; ll f[][][]…