HDU 4389 X mod f(x) 디지털 dp
Time Limit:2000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u
Submit
Status
Practice
HDU 4389
Appoint description: System Crawler (2016-05-06)
Description
Here is a function f(x):
int f ( int x ) {
if ( x == 0 ) return 0;
return f ( x / 10 ) + x % 10;
}
Now, you want to know, in a given interval [A, B] (1 <= A <= B <= 10
9), how many integer x that mod f(x) equal to 0.
Input
The first line has an integer T (1 <= T <= 50), indicate the number of test cases.
Each test case has two integers A, B.
Output
For each test case, output only one line containing the case number and an integer indicated the number of x.
Sample Input
2
1 10
11 20
Sample Output
Case 1: 10
Case 2: 3
f(x) 1-81 f(x)
ACcode:
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int dp[10][81][81][81];
int data[10];
int cnt=1;
int dfs(int len,int sum,int mod,int res,int limit){
if(!len)return sum==mod&&res==0;
if(!limit&&dp[len][sum][mod][res]!=-1)return dp[len][sum][mod][res];
int ed=limit?data[len]:9;
int ans=0;
for(int i=0;i<=ed;++i)
ans+=dfs(len-1,sum+i,mod,(res*10+i)%mod,limit&&i==ed);
return limit?ans:dp[len][sum][mod][res]=ans;
}
int fun(int a){
int len=0;
while(a){
data[++len]=a%10;
a/=10;
}
int ans=0;
for(int i=1;i<=81;++i)
ans+=dfs(len,0,i,0,1);
return ans;
}
void doit(){
int a,b;
scanf("%d%d",&a,&b);
printf("Case %d: %d
",cnt++,fun(b)-fun(a-1));
}
int main(){
int loop;memset(dp,-1,sizeof(dp));
scanf("%d",&loop);
while(loop--)doit();}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【경쟁 프로 전형적인 90문】008의 해설(python)의 해설 기사입니다. 해설의 이미지를 봐도 모르는 (이해력이 부족한) 것이 많이 있었으므로, 나중에 다시 풀었을 때에 확인할 수 있도록 정리했습니다. ※순차적으로, 모든 문제의 해설 기사를 들어갈 예정입니다. 문자열...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.