码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 3652 B-number(数位DP)

时间:2015-02-23 15:27:52      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:acm   dp   

#include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#define LL long long 
using namespace std;
int dp[15][15][2][10];
int bit[15];
int dfs(int pos,int num,int t,int e,bool flag)
{
	if(pos == 0) return t && (num == 0);
	if(!flag && dp[pos][num][t][e] != -1)
		return dp[pos][num][t][e];
	int end = flag ? bit[pos] : 9;
	int ans = 0;
	for(int i=0;i<=end;i++)
	{
		ans += dfs(pos-1,(num * 10 + i) % 13, t||(e==1&&i==3), i,flag &&(i==end));
	}
	if(!flag) dp[pos][num][t][e] = ans;
	return ans;
}
int solve(int n)
{
	memset(bit, 0, sizeof(bit));
	int len = 0;
	while(n)
	{
		bit[++len] = n % 10;
		n /= 10;
	}
	return dfs(len,0,0,0,1);
}
int main()
{
	int n;
	while(scanf("%d", &n)!=EOF)
	{	
		memset(dp, -1, sizeof(dp));
		printf("%d\n", solve(n));
	}
	return 0;
}

HDU 3652 B-number(数位DP)

标签:acm   dp   

原文地址:http://blog.csdn.net/moguxiaozhe/article/details/43916469

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!