数位DP——HDU 4352 XHXJ's LIS

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

  • 题意:求出区间[L,R]内有多少个数字X,满足X上的所有位从左往右构成长度为K的严格递增子序列。

  • 分析:用长度为10的二进制数来表示严格递增子序列的状态:比如0001001001表示前缀中最长严格递增子序列为0,3,6;然后搜索并记录下具有同样状态前缀,相同剩余位数的符合要求的数。

  • 注意:需要预处理出二进制状态下,在一个递增子序列后添加一个数后得到的新的递增子序列,这里的计算要用到 LIS算法 的知识

int Next[1<<10][10];
int LIS[1<<10]; //记录每一个递增子序列的长度
int find_next(int stat, int x)
{
    for(int i=x;i<10;i++)
    {
        //在递增子序列中插入一个新的数,需要判断原数列中有没有比它大的,如果没有,直接插入,如果有,则找到第一个大于它的数,然后替换,这样能保证总是得到最长的递增子序列
        if( stat & (1<<i) ) return ( stat^(1<<i) | (1<<x) );
    }
    return stat|(1<<x) ;
}

void init()
{
    for(int i=0;i<(1<<10);i++)
    {
        LIS[i] = 0;
        for(int j=0;j<10;j++)
        {
            if( i & (1<<j))  LIS[i]++;
            Next[i][j] = find_next(i,j);
        }
    }
}
  • AC代码:
/*************************************************************************
    > File Name: test.cpp
    > Author: Akira 
    > Mail: qaq.febr2.qaq@gmail.com 
 ************************************************************************/

#include <iostream>
#include <sstream>
#include <cstdio>
#include <cstring>
#include <string>
#include <cstdlib>
#include <algorithm>
#include <bitset>
#include <queue>
#include <stack>
#include <map>
#include <cmath>
#include <vector>
#include <set>
#include <list>
#include <ctime>
#include <climits>
typedef long long LL;
typedef unsigned long long ULL;
typedef long double LD;
#define MST(a,b) memset(a,b,sizeof(a))
#define CLR(a) MST(a,0)
#define Sqr(a) ((a)*(a))
using namespace std;

#define MaxN 100001
#define MaxM MaxN*10
#define INF 0x3f3f3f3f
#define PI 3.1415926535897932384626
const int mod = 1E9+7;
const double eps = 1e-6;
#define bug cout<<88888888<<endl;
#define debug(x) cout << #x" = " << x << endl;
int T,K;
LL L,R;
int digits[20];
LL DP[20][1<<10][11];
int Next[1<<10][10];
int LIS[1<<10];

LL dfs(int pos, int stat, bool zero, bool limit)
{
    if(pos==0)
    {
        if(LIS[stat] == K) return 1;
        else return 0;
    }
    if( !limit && DP[pos][stat][K] !=-1) return DP[pos][stat][K];
    int Max = limit ? digits[pos] : 9;
    LL ans = 0;
    for(int i=0;i<=Max;i++)
    {
        ans += dfs(pos-1, (zero&&i==0) ? 0 :Next[stat][i], zero&&i==0, limit&&Max==i);
    }
    if(!limit) DP[pos][stat][K] = ans;
    return ans;
}

LL find(LL x)
{
    int pos = 0;
    while(x)
    {
        digits[++pos] = x%10;
        x/=10;
    }
    return dfs(pos,0,true,true);
}
void solve(int t)
{
    printf("Case #%d: %lld\n",t, find(R)-find(L-1));
}

int find_next(int stat, int x)
{
    for(int i=x;i<10;i++)
    {
        if( stat & (1<<i) ) return ( stat^(1<<i) | (1<<x) );
    }
    return stat|(1<<x) ;
}

void init()
{
    for(int i=0;i<(1<<10);i++)
    {
        LIS[i] = 0;
        for(int j=0;j<10;j++)
        {
            if( i & (1<<j))  LIS[i]++;
            Next[i][j] = find_next(i,j);
        }
    }
}

int main()
{
    //std::ios::sync_with_stdio(false);
    MST(DP,-1);
    scanf("%d", &T);
    init();
    for(int i=1;i<=T;i++)
    {
        scanf("%lld%lld%d", &L, &R, &K);
        solve(i);
    }
    //system("pause");
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值