CodeForces 55D - Beautiful numbers

本文介绍了一种算法,用于计算特定范围内所有美丽数的数量。美丽数定义为能被其所有非零数字整除的正整数。通过递归深度优先搜索结合记忆化的方式优化计算过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Time Limit:4000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
 

Description

Volodya is an odd boy and his taste is strange as well. It seems to him that a positive integer number is beautiful if and only if it is divisible by each of its nonzero digits. We will not argue with this and just count the quantity of beautiful numbers in given ranges.

Input

The first line of the input contains the number of cases t (1 ≤ t ≤ 10). Each of the next t lines contains two natural numbers li and ri (1 ≤ li ≤ ri ≤ 9 ·1018).

Please, do not use %lld specificator to read or write 64-bit integers in C++. It is preffered to use cin (also you may use %I64d).

Output

Output should contain t numbers — answers to the queries, one number per line — quantities of beautiful numbers in given intervals (from li to ri, inclusively).

Sample Input

Input
1
1 9
Output
9
Input
1
12 15
Output
2

#include <cstdio>
#include <iostream>
#include <cstring>
#include <string>

using namespace std;

typedef long long LL;
    
int a[20];
const int MOD = 2520;
LL dp[20][MOD][50];
int hash[MOD];

int GCD(int a, int b)
{
    if(b==0)    return a;
    return GCD(b, a%b);    
}

int LCM(int a, int b)
{
    return a/GCD(a,b)*b;
}

LL dfs(int len, int mod, int lcm, bool limit)
{
    if(len < 1)    return mod%lcm==0;
    
    if(!limit && dp[len][mod][hash[lcm]] != -1)    return dp[len][mod][hash[lcm]];
    
    int maxn = limit ? a[len] : 9;
    LL ret = 0;
    int new_lcm;
    for(int i=0; i<=maxn; i++) {
        if(i)    new_lcm = LCM(lcm, i);
        else    new_lcm = lcm;
        ret += dfs(len-1, (mod*10+i)%MOD, new_lcm, limit&&i==maxn);
    }
    if(!limit)    dp[len][mod][hash[lcm]] = ret;
    return ret;
}

LL f(LL n)
{
    int len = 0;
    while(n) {
        a[++len] = n % 10;
        n/=10;
    }    
    return dfs(len, 0, 1, 1);
}

void Init()
{
    int cnt = 0;
    for(int i=1; i<=MOD; i++) {
        if(MOD % i == 0) {
            hash[i] = cnt++;
        }
    }
//    printf("cnt = %d\n", cnt); //
}

int main ()
{
    Init();
    int t;
    LL l, r;
    scanf("%d", &t);
    memset(dp, -1, sizeof(dp));
    while(t--) {
        scanf("%I64d%I64d", &l, &r);
        printf("%I64d\n", f(r)-f(l-1));        
    }

    return 0;
}

 

转载于:https://www.cnblogs.com/AcIsFun/p/5391833.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值