CodeForces 55D Beautiful numbers(디지털 DP+ 상태 단순화, 레벨 5)
Crawling in process...
Crawling failed
Time Limit:4000MS Memory Limit:262144KB 64bit IO Format:%I64d & %I64u
Submit
Status
Appoint description: System Crawler (2012-05-31)
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
사고방식: 3차원 DP dp[몇 위][모형 최소 공배수의 여수][최소 공배수]
최소 공배수가 2520까지 되기 때문에 19x2520x2520폭의 공간이 필요합니다.
그러나 실제로 얻을 수 있는 최소 공배수는 2520개, 수십 개밖에 없기 때문에 DP는 다른 상태만 기록하면 되기 때문이다.
dp는 모든 수를 계산할 필요가 없습니다. 왜냐하면 서로 다른 수의mod수가 다르기 때문입니다.그래서 틀리지 않아요.
다음은 물 디지털 DP입니다.
#include<iostream>
#include<cstring>
#include<cstdio>
#define FOR(i,a,b) for(int i=a;i<=b;++i)
#define clr(f,z) memset(f,z,sizeof(f))
typedef long long LL;
using namespace std;
LL dp[22][2521][50];
const int MOD=2520;
int bit[22];
int gcd(int a,int b)
{ int z;
while(b)
{
z=b;b=a%b;a=z;
}
return a;
}
int LCM(int a,int b)
{
return a*b/gcd(a,b);
}
int to[2521];
void data()
{ int pos=0;
FOR(i,1,2520)
if(MOD%i==0)// ,
{
to[i]=pos++;
}
}
LL DP(int pp,int mod,int lcm,bool big)
{
if(pp==0)return mod%lcm==0;
if(big&&dp[pp][mod][to[lcm]]!=-1)return dp[pp][mod][ to[lcm] ];
int kn=big?9:bit[pp];
LL ret=0;
FOR(i,0,kn)
{ int zlcm;
if(i==0)zlcm=lcm;
else zlcm=LCM(lcm,i);
ret+=DP(pp-1,(mod*10+i)%MOD,zlcm,big||kn!=i);
}
if(big)dp[pp][mod][to[lcm]]=ret;
return ret;
}
LL get(LL x)
{
int pos=0;
while(x)
{
bit[++pos]=x%10;
x/=10;
}
return DP(pos,0,1,0);
}
int main()
{
LL x,y;data();clr(dp,-1);
int n;
cin>>n;
while(n--)
{ cin>>x>>y;
cout<<get(y)-get(x-1)<<"
";
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.