zoukankan      html  css  js  c++  java
  • POJ3208:Apocalypse Someday

    题目描述

    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.

    输入格式

    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.

    输出格式

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


    翻译:给出n,问1~n中含有666的数的个数

    很明显的数位动规。我们用记忆化搜索来做,先设计状态。

    len,pre1,pre2表示当前为第len位,前一位是否为6,前第二位是否为6。为了减少思维复杂度,我们可以数位动规算出有多少不含666的数的个数。那么设(len,pre1,pre2)表示不含666的数的个数,可以很容易写出代码:

    long long dfs(int len,bool pre1,bool pre2,bool havelim){
        if(len==0) return 1;
        if(!havelim&&dp[len][pre1][pre2]) return dp[len][pre1][pre2];
        int lim=(havelim?bit[len]:9);
        long long cnt=0;
        for(register int i=0;i<=lim;i++){
            if(pre1&&pre2&&i==6) continue;
            cnt+=dfs(len-1,(i==6),pre1,(havelim&&i==lim));
        }
        return havelim?cnt:dp[len][pre1][pre2]=cnt;
    }
    

    完整代码:

    #include<iostream>
    #include<cstring>
    #include<cstdio>
    using namespace std;
    
    long long dp[21][2][2];
    int n,bit[21];
    
    inline int read(){
        register int x(0),f(1); register char c(getchar());
        while(c<'0'||'9'<c){ if(c=='-') f=-1; c=getchar(); }
        while('0'<=c&&c<='9') x=(x<<1)+(x<<3)+(c^48),c=getchar();
        return x*f;
    }
    
    long long dfs(int len,bool pre1,bool pre2,bool havelim){
        if(len==0) return 1;
        if(!havelim&&dp[len][pre1][pre2]) return dp[len][pre1][pre2];
        int lim=(havelim?bit[len]:9);
        long long cnt=0;
        for(register int i=0;i<=lim;i++){
            if(pre1&&pre2&&i==6) continue;
            cnt+=dfs(len-1,(i==6),pre1,(havelim&&i==lim));
        }
        return havelim?cnt:dp[len][pre1][pre2]=cnt;
    }
    
    inline bool check(long long x){
        int d=0; long long tmp=x;
        while(x) bit[++d]=x%10,x/=10;
        return (tmp+1-dfs(d,false,false,true))>=n;
    }
    
    int main(){
        int t=read();
        while(t--){
            n=read();
            long long l=0,r=1e18,mid=0,ans=0;
            while(l<=r){
                mid=l+r>>1;
                if(check(mid)) ans=mid,r=mid-1;
                else l=mid+1;
            }
            printf("%lld
    ",ans);
        }
        return 0;
    }
    
  • 相关阅读:
    java.lang.ExceptionInInitializerError异常分析
    项目中碰到的ExceptionInInitializerError异常
    获取全局上下文(getApplicationContext)_创建Shared Preference工具类_实现自动登录
    IntelliJ Idea 常用快捷键列表
    Qt 创建圆角、无边框、有阴影、可拖动的窗口 good
    去掉 Windows 中控件的虚线框(当当 element == QStyle::PE_FrameFocusRect 时,直接返回,不绘制虚线框)
    Qt 显示 GIF
    C++ 查看预处理后的源文件(查看真实代码)
    数据库访问工具 DBUtl(公孙二狗)
    Tornado
  • 原文地址:https://www.cnblogs.com/akura/p/10908146.html
Copyright © 2011-2022 走看看