诡异数字https://ac.nowcoder.com/acm/problem/20669思路:dp[pos, pre, cnt]表示当前位置是pos,上一位出现的数是pre, 这个数出现cnt次的数量。 #include<bits/stdc++.h> #define ll long long using namespace std; const int N = 25, mod = 20020219; ll t ,l, r, n, numlim[N], num[N], dp[N][10][1010]; ll dfs(int pos, bool limit, bool le...