↓ 跳过正文
  1. Posts/

hdu 3709 Balanced Number (数位dp)

·1021 字·3 分钟

题目链接 题意:找到某区间中平衡数的个数。所谓平衡数是指,存在某个位置,使得两边的力矩相等。举个例子,比如14326,如果把4作为中间,那么左边=11=1,右边=31+22+62=19。 思路:枚举中间的pivot,注意个位数也是平衡数(就是认为两边的力矩都是0了),所以每一个位置都可能是平衡位置,枚举的时候从1到len… 一开始我是分别记录两边的值,非常浪费空间,然而发现其实没必要。我们只关心左右是否相等,而不关心左右的值到底是多少,所以可以把两边的值带符号合并成一个值(pivot左边为+,pivot右边为负)。如果最后为0,说明左右相等。

以及,这个值(设为sum)是递减的。所以任何时刻如果sum<0,那么狗带,算一个剪枝,而且避免了下标为负。

以及,关于前导0的问题,有些题目不允许前导0。**但是并不是所有不允许前导0的都需要特别处理,像这道,前导0不会导致更新答案,所以不用管。**但是要注意,由于0,00,000,0000都是合法的balanced数,然而其实它们是一个数,多加了len-1次,记得减去。

代码实现
 1/* ***********************************************
 2Author :111qqz
 3Created Time :2016年03月17日 星期四 17时08分59秒
 4File Name :code/hdu/3709.cpp
 5************************************************ */
 6
 7#include <cstdio>
 8#include <cstring>
 9#include <iostream>
10#include <algorithm>
11#include <vector>
12#include <queue>
13#include <set>
14#include <map>
15#include <string>
16#include <cmath>
17#include <cstdlib>
18#include <ctime>
19#define fst first
20#define sec second
21#define lson l,m,rt<<1
22#define rson m+1,r,rt<<1|1
23#define ms(a,x) memset(a,x,sizeof(a))
24typedef long long LL;
25#define pi pair < int ,int >
26#define MP make_pair
27
28using namespace std;
29const double eps = 1E-8;
30const int dx4[4]={1,0,0,-1};
31const int dy4[4]={0,-1,1,0};
32const int inf = 0x3f3f3f3f;
33LL l,r;
34int T;
35int digit[30];
36LL dp[20][2000][20];  //窝要判断左边和右边是否相等,并不需要分别统计两边,只要把数值带上符号,统计左右两边的和即可。
37                        //如果相等,那么和为0.这样能节省很多空间。
38LL dfs( int pos,int sum ,int pivot,bool limit)
39{			//不用考虑前导0,因为前导0的存在并不会对答案有任何贡献.
40    if (pos==0) return sum==0;
41    if (sum<0) return 0; //由于sum是递减的。。所以sum一旦小于0绝对药丸。。。肯定对答案没贡献。
42			//也算作一个剪枝..
43    if (!limit&&dp[pos][sum][pivot]!=-1) return dp[pos][sum][pivot];
44
45    int mx = limit?digit[pos]:9;
46    LL res = 0LL ;
47    for ( int i = 0 ; i <= mx ; i++)
48    {
49	res+=dfs(pos-1,sum+(pos-pivot)*i,pivot,limit&&i==mx);
50    }
51
52   // cout<<"res:"<<res<<endl;
53    return limit?res:dp[pos][sum][pivot]=res;
54}
55LL solve (LL n)
56{
57   // if (n<0) return 0;
58    LL len = 0;
59    ms ( digit , 0 );
60    while (n)
61    {
62	digit[++len] =  n % 10;
63	n /= 10;
64    }
65
66    LL res = 0LL ;
67    for ( int piv = 1 ; piv <= len  ; piv++)  //pivot要从1开始枚举到len。因为个位数也是满足条件的数(两边都为0,相等)
68    {
69	res += dfs (len,0,piv,true);
70//	cout<<"res:"<<res<<endl;
71    }
72
73    return res-(len-1); //0,00,000,0000都是满足条件的,然而其实他们是一个数,多算了len-1次。
74}
75int main()
76{
77	#ifndef  ONLINE_JUDGE
78	freopen("code/in.txt","r",stdin);
79  #endif
80
81	ios::sync_with_stdio(false);
82	int T;
83	cin>>T;
84	ms(dp,-1);
85	while (T--)
86	{
87	    cin>>l>>r;
88	    LL ans = solve (r) - solve (l-1);
89	  //  cout<<"-1:"<<solve(-1)<<endl;
90	    cout<<ans<<endl;
91	}
92
93  #ifndef ONLINE_JUDGE
94  fclose(stdin);
95  #endif
96    return 0;
97}

相关文章

poj3252 Round Numbers (不允许前导0的二进制数位dp)

·530 字·2 分钟
题目链接 题意:问某区间中,round number 的个数是多少。所谓round number,当且仅当一个数的二进制表示中,‘0’的个数大于等于‘1’的个数。 思路:简单数位dp..和windy数那道题类似,都是不允许前导0.。。所以在dfs中要加一维判断前面是否有非0的数。。。

hdu 4722 good numbers (带整除的数位dp)

·478 字·1 分钟
题目链接 题意:求一个区间内所有位数字之和能被10整除的数的个数。 思路:数位dp,dfs要一个参数记录从最高位到现在的pos位置的数字之和的结果。 代码实现 1 dp[i][j] 表示长度为i,和为j的方案数。 2 记得开long long ,然而我开了那么多long long 忘了dp 的long long 结果wa到死。。果然大早上不清醒吗== 3 4 5 6/* *********************************************** 7Author :111qqz 8Created Time :2016年03月16日 星期三 08时10分19秒 9File Name :code/hdu/4722.cpp 10************************************************ */ 11 12#include <cstdio> 13#include <cstring> 14#include <iostream> 15#include <algorithm> 16#include <vector> 17#include <queue> 18#include <set> 19#include <map> 20#include <string> 21#include <cmath> 22#include <cstdlib> 23#include <ctime> 24#define fst first 25#define sec second 26#define lson l,m,rt<<1 27#define rson m+1,r,rt<<1|1 28#define ms(a,x) memset(a,x,sizeof(a)) 29typedef long long LL; 30#define pi pair < int ,int > 31#define MP make_pair 32 33using namespace std; 34const double eps = 1E-8; 35const int dx4[4]={1,0,0,-1}; 36const int dy4[4]={0,-1,1,0}; 37const int inf = 0x3f3f3f3f; 38LL l,r; 39int digit[30]; 40LL dp[30][15]; //dp 数组忘记开long long ,wa到死。。。。。。。。。日了哈士奇。 41LL dfs ( int pos,int sum,bool limit) 42{ 43 if (pos==0) 44 { 45 if (sum==0) return 1; 46 else return 0; 47 } 48 if (!limit&&dp[pos][sum]!=-1) return dp[pos][sum]; 49 50 int mx = limit?digit[pos]:9; 51 52 LL res = 0 ; 53 for ( int i = 0 ; i <= mx; i ++) 54 { 55 res+=dfs(pos-1,(sum+i),limit&&i==mx); 56 } 57 58 if (!limit) dp[pos][sum] = res; 59 60 return res; 61 62} 63LL solve ( LL n) 64{ 65// if (n==0) return 1; 66 // if (n<=9) return 0; 67 if (n<0) return 0; 68 ms(digit,0); 69 int len = 0 ; 70 while (n) 71 { 72 digit[++len] = n % 10; 73 n /= 10; 74 } 75 76 return dfs(len,0,true); 77} 78int main() 79{ 80 #ifndef ONLINE_JUDGE 81 freopen("code/in.txt","r",stdin); 82 #endif 83// ios::sync_with_stdio(false); 84 int T; 85 cin>>T; 86 ms(dp,-1); 87 int cas = 0 ; 88 while (T--) 89 { 90 scanf("%lld %lld",&l,&r); 91 LL ans = solve (r)-solve(l-1); 92 93 printf("Case #%d: %lld\n",++cas,ans); 94 } 95 96 #ifndef ONLINE_JUDGE 97 fclose(stdin); 98 #endif 99 return 0; 100}

bzoj 1026 windy数(数位dp入门题)

·757 字·2 分钟
题目链接 题意:不含前导零且相邻两个数字之差至少为2的正整数被称为windy数。 windy想知道,在A和B之间,包括A和B,总共有多少个windy数? 思路:数位dp 这道题的特点是前面不允许前导0,也就是说,如果第i位前面全是0的话,这个数就变成了i位数,i就变成了最高位,而最高位没有前面的数(**如果这里不考虑不允许前导0这个因素而把前面的一个数认为成是0就错了) **最高位的数可以直接取。 还有记忆化调用以及存储的时候也要注意…只有当位数相同的时候转移才有意义。 具体的方法是dfs中多了一个prehasnonzero的bool变量,就是字面意思,判断当前位置前面的位置是够存在一个非0的值。