• hdu 3555 Bomb 【数位DP】


    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3555

    题意:上一题是不要62 这个是“不要49”

    代码:

    #include <stdio.h>
    #include <ctime>
    #include <math.h>
    #include <limits.h>
    #include <complex>
    #include <string>
    #include <functional>
    #include <iterator>
    #include <algorithm>
    #include <vector>
    #include <stack>
    #include <queue>
    #include <set>
    #include <map>
    #include <list>
    #include <bitset>
    #include <sstream>
    #include <iomanip>
    #include <fstream>
    #include <iostream>
    #include <ctime>
    #include <cmath>
    #include <cstring>
    #include <cstdio>
    #include <time.h>
    #include <ctype.h>
    #include <string.h>
    #include <assert.h>
    
    using namespace std;
    
    #define N 50
    
    using namespace std;
    int bit[N];
    long long dp[N][3];
    
    /*
          dp[i][0]:前i位不含 49 的个数。
    
        dp[i][1]:前i位不含 49 数且i+1位是4的个数。
    
        dp[i][2]:前i位含 49 的个数。

    */ long long dfs(int pos, int st, bool flag) { if (pos == 0) return st == 2; if (flag && dp[pos][st] != -1) return dp[pos][st]; long long ans = 0; int u = flag ?

    9 : bit[pos]; for (int d = 0;d <= u;d++) { if (st == 2 || (st == 1 && d == 9)) ans += dfs(pos - 1, 2, flag || d<u); else if (d == 4) ans += dfs(pos - 1, 1, flag || d<u); else ans += dfs(pos - 1, 0, flag || d<u); } if (flag) dp[pos][st] = ans; return ans; } long long solve(long long n) { int len = 0; while (n) { bit[++len] = n % 10; n /= 10; } return dfs(len, 0, 0); } int main() { long long n; int t; scanf("%d",&t); while (t--) { scanf("%lld", &n); memset(dp, -1, sizeof(dp)); printf("%lld ", solve(n)); } return 0; }

  • 相关阅读:
    leetcode-383-Ransom Note(以空间换时间)
    AtCoder
    AtCoder
    Hadoop序列化案例实操
    Java实现MapReduce Wordcount案例
    HDFS常用API操作 和 HDFS的I/O流操作
    HBase常用的JAVA API操作
    ZooKeeper之服务器动态上下线案例
    机器学习(6)——逻辑回归
    机器学习(5)——多项式回归与模型泛化
  • 原文地址:https://www.cnblogs.com/cxchanpin/p/7123555.html
Copyright © 2020-2023  润新知