标签:
Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1508 Accepted Submission(s): 576
题意是要判断前n位数字(不包括n),有多少个数字 i 跟前面两个 i+1 , i+2 ,相加时不进位 。
符合要求的数字就是个位 0 ~ 2 ,其余位 0 ~ 3。
用一个dfs就可以搜出来了。
对于当前位是 x 的话 , 若果 x > 3 , 可以直接得出可以构成 [ 4^(位数-1) * 3 ] 个数
若果 x <= 3 的话 , 就可以构成 [ (x-1)*4^(位数-1)*3 + 后面的位能组成数字的数目(dfs求) ]。
#include <iostream> #include <cstdio> #include <cstring> #include <string> #include <cmath> #include <vector> #include <queue> #include <map> #include <set> #include <stack> #include <algorithm> using namespace std; #define root 1,n,1 #define lson l,mid,rt<<1 #define rson mid+1,r,rt<<1|1 #define lr rt<<1 #define rr rt<<1|1 typedef long long LL; const int oo = 1e9+7; const double PI = acos(-1.0); const double eps = 1e-6 ; const int N = 1010; int num[N], cnt ; LL f[N] , n; void init() { f[0] = 0 ; f[1] = 3 ; for( int i = 2 ; i <= 11 ; ++i ) f[i] = f[i-1] * 4 ; } LL cal( int pos ) { if( pos == 1 ) { return min ( 3LL , (LL)num[pos] + 1 ) ; } else { if( num[pos] <= 3 ) return f[ pos-1 ] * num[pos] + cal( pos - 1 ) ; else return f[pos] ; } } int main() { // freopen("in.txt","r",stdin); ios::sync_with_stdio(false); init(); while( cin >> n ) { if( !n ){ puts("0"); continue ; } if( n == 1 ){ puts("1"); continue ; } n--; cnt = 1 ; while( n ) { num[cnt++] = n % 10 ; n /= 10 ; } cout << cal( cnt - 1 ) << endl ; } }
HDU 2451 Simple Addition Expression
标签:
原文地址:http://www.cnblogs.com/hlmark/p/4187878.html