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

吉比特笔试题解

时间:2019-04-10 21:40:09      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:include   print   span   class   using   c++   dfs   size   bsp   

#include <bits/stdc++.h>
using namespace std;

const int N = 10;

int dp[N][5][2];
int l, num[N];
int dat[4] = {2, 0, 1, 8};

int dfs(int pos, int pn, int lim)
{
  if(pos == -1) {
    if(pn == 4) return 1;
    return 0;
  }
  if(dp[pos][pn][lim] != -1 && (!lim))
    return dp[pos][pn][lim];
  int top = lim ? num[pos] : 9;
  int rtn = 0;
  for(int i = 0; i <= top; ++ i) {
    int npn = 4;
    if(pn < 4) {
      if(dat[pn] == i) npn = pn + 1;
      else npn = pn;
    }
    rtn += dfs(pos - 1, npn, lim&&(i==top));
  }
  if(!lim) dp[pos][pn][lim] = rtn;
  return rtn;
}

int main()
{
  int x;
  scanf("%d", &x);
  memset(dp, -1, sizeof(dp));
  l = 0;
  while(x) {
    num[l ++] = x % 10;
    x /= 10;
  }
  printf("%d\n", dfs(l - 1, 0, 1));
}

 

吉比特笔试题解

标签:include   print   span   class   using   c++   dfs   size   bsp   

原文地址:https://www.cnblogs.com/Roni-i/p/10686059.html

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