数位DP 概念 数位DP往往都是这样的题型,给定一个闭区间[ l , r ] [l,r][l,r],让你求这个区间中满足某种条件的数的总数。而这个区间可能很大 其他 细节都在代码里 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N = 63; ll dp[N][N],a[N]; // 当前是第几位 // (去掉前导零)有几个数字 // 有没有前导零 // 目前这意味是否到达限制(即:前面的数都取到了最大) ll dfs(ll pos,ll num,bool lea...