hdu 3652 B - number (13 및 13 배수 포함) 디지털 dp

5154 단어 php
제목:http://acm.hdu.edu.cn/showproblem.php?pid=3652
0 부터 n 까지 몇 개의 숫자 가 13 배수 이 고 하위 꼬치 13 이 들 어 있 냐 고 물 었 습 니 다.
현재 의 여 수 를 기록 하 세 요. 이미 13 배수 와 상위 의 숫자 크기 입 니까?
#include
#include
#include
#include
#include
#include
#include
#include
#include<string>
using namespace std;
#define INF 0x3f3f3f3f
#define LL long long
#define N 106
#define Lson rood<<1
#define Rson rood<<1|1
LL dp[20][20][14][3],d[20];
LL dfs(int now,int up,int mod,int falg,int fp)
{
      ///      up    13  mod     13 falg
    if(now==1) return !mod&&falg;///    
    if(!fp&&dp[now][up][mod][falg]!=-1) return dp[now][up][mod][falg];
    LL ans=0;
    int ma=fp?d[now-1]:9;
    for(int i=0;i<=ma;i++)
        ans+=dfs(now-1,i,(mod*10+i)%13,(up==1&&i==3)||falg,fp&&i==ma);
    if(!fp&&dp[now][up][mod][falg]) dp[now][up][mod][falg]=ans;
    return ans;
}
LL calc(LL x)
{
      ///    
    LL xxx=x;
    int len=0;
    while(xxx)
    {
        d[++len]=xxx%10;
        xxx/=10;
    }
    LL sum=0;
    for(int i=0;i<=d[len];i++)
        sum+=dfs(len,i,i,0,i==d[len]);
    return sum;
}
int main()
{
    LL n;
    memset(dp,-1,sizeof(dp));
    while(scanf("%lld",&n)!=EOF)
        printf("%lld
",calc(n)); return 0; }

 
다음으로 전송:https://www.cnblogs.com/a719525932/p/7760316.html

좋은 웹페이지 즐겨찾기