[CQOI2016]手机号码
Posted ainiyuling
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[CQOI2016]手机号码相关的知识,希望对你有一定的参考价值。
是不是所有的数位DP都长得一样? (也许是我太菜,只做过最简单的?)
这题也一样,只不过记得东西变了变,直接记搜即可。
代码真的很短,注释在代码里。
#include <bits/stdc++.h> using namespace std; typedef long long ll; int num[12],len; ll l,r,dp[11][11][11][2][2][2][2]; ll f(int p,int a,int b,bool c,bool d,bool _4,bool _8) if(_4&&_8) return 0; if(p<=0) return c; if (~dp[p][a][b][c][d][_4][_8]) return dp[p][a][b][c][d][_4][_8]; ll res=0;int lim=!d?num[p]:9; for(int i=0;i<=lim;i++) res+=f(p-1,i,a,c||(i==b&&i==a),d||(i<lim),_4||(i==4),_8||(i==8)); return dp[p][a][b][c][d][_4][_8]=res; ll calc(ll x) if(x<1e10) return 0; memset(dp,-1,sizeof(dp)); for(len=0;x;x/=10) num[++len]=x%10; ll res=0; for(int i=1;i<=num[len];i++) res+=f(10,i,0,0,i<num[len],i==4,i==8); return res; int main() cin>>l>>r; cout<<calc(r)-calc(l-1);
以上是关于[CQOI2016]手机号码的主要内容,如果未能解决你的问题,请参考以下文章