poj3208 Apocalypse Someday

Description

The number 666 is considered to be the occult “number of the beast”
and is a well used number in all major apocalypse themed blockbuster
movies. However the number 666 can’t always be used in the script so
numbers such as 1666 are used instead. Let us call the numbers
containing at least three contiguous sixes beastly numbers. The first
few beastly numbers are 666, 1666, 2666, 3666, 4666, 5666…

Given a 1-based index n, your program should return the nth beastly
number.

Input

The first line contains the number of test cases T (T ≤ 1,000).

Each of the following T lines contains an integer n (1 ≤ n ≤
50,000,000) as a test case.

Output

For each test case, your program should output the nth beastly number.

计数类dp的变种。
先预处理出dp[i][0..3],0..2表示i位数里开头有0..2个6的【非魔鬼数数量】,3表示i位数里的魔鬼数数量。
然后从高位向低位试填。在每一位数字从小到大试填。如果填上这个数总数就多了,那这一位就填这个数【但是不累加进总数】,否则将总数累加,并试填下一个数。
如何计算填好该位后的总数呢?不妨设i位填j之后,结尾6的个数为cnt。【这里注意,和前面的dp数组定义时一样,cnt=3代表是魔鬼数(即前面已经出现了666),并不一定结尾要有666,同理cnt<3代表结尾有cnt个6,且不是魔鬼数。例如5666066___的cnt是3】那么后面可以填dp数组下标为3,2,…,3-cnt的数
即tot=now+∑(dp[i-1][j]|cnt+j>=3)。now表示之前的总数。

#include<cstdio>
#include<cstring>
int dp[20][5],ans[20];
int main()
{
    int i,j,k,m,n,p,q,x,y,z,T,now,cnt,tot;
    dp[0][0]=1;
    for (i=0;i<=15;i++)
      for (j=0;j<=3;j++)
      {
        dp[i+1][j==3?3:j+1]+=dp[i][j];
        dp[i+1][j==3?3:0]+=dp[i][j]*9;
      }
    scanf("%d",&T);
    while (T--)
    {
        memset(ans,0,sizeof(ans));
        scanf("%d",&x);
        p=3;
        while (dp[p][3]<x) p++;
        now=cnt=0;
        for (i=p;i>=1;i--)
        {
            for (j=0;j<=9;j++)
            {
                y=cnt;
                if (cnt<3)
                {
                    if (j==6) cnt++;
                    else cnt=0;
                }
                tot=now;
                for (k=3;k>=0;k--)
                  if (cnt+k>=3) tot+=dp[i-1][k];
                if (tot>=x)
                {
                    ans[i]=j;
                    break;
                }
                now=tot;
                cnt=y;
            }
        }
        for (i=p;i>=1;i--)
          printf("%d",ans[i]);
        printf("\n");
    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值