poj 3208 Apocalypse Someday (数位dp+二分答案)

题意:

求第n个含有666的数。

题解:

第一反应就是数位dp然后二分答案,手残代码没写好wa好多次。正解是自动机dp,感觉大才小用了。我用记忆化写的,二分答案,但是有时候无法得到精确解,因此对结果进行稍微的波动处理下。

#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define B(x) (1<<(x))
typedef long long ll;
void cmax(int& a,int b){ if(b>a)a=b; }
void cmin(int& a,int b){ if(b72915400)return (ll)10000000000;
    ll l=0,r=(ll)10000000000,mid,ans,t;
    while(l>1;
        t=Cnt(mid);
        if(t=n){
        while(Cnt(ans)>=n)ans--;
        ans++;
    }else{
        while(Cnt(ans)<=n)ans++;
        ans--;
    }
    return ans;
}

int main(){
    //freopen("G:\\read.txt","r",stdin);
    //freopen("G:\\a.txt","w",stdout);
    int n,T;
    memset(dp,-1,sizeof dp);
    scanf("%d",&T);
    while(T--){
        scanf("%d",&n);
        printf("%I64d\n",solve(n));
    }
    return 0;
}
/*
72915400
*/




你可能感兴趣的:(动态规划,动态规划—数位dp)