VF(동적 계획)
1525 단어 동적 기획
시간 제한:
1000ms | 메모리 제한: 65535KB
난이도:
2
묘사
Vasya is the beginning mathematician. He decided to make an important contribution to the science and to become famous all over the world. But how can he do that if the most interesting facts such as Pythagor’s theorem are already proved? Correct! He is to think out something his own, original. So he thought out the Theory of Vasya’s Functions. Vasya’s Functions (VF) are rather simple: the value of the
N
th VF in the point
S is an amount of integers from 1 to
N that have the sum of digits
S. You seem to be great programmers, so Vasya gave you a task to find the milliard VF value (i.e. the VF with
N = 10
9) because Vasya himself won’t cope with the task. Can you solve the problem?
입력
There are multiple test cases.
Integer S (1 ≤ S ≤ 81).
출력
The milliard VF value in the point S.
샘플 입력
1
샘플 출력
10
: , 1000000000 n , ;
#include<stdio.h>
int main(){
int vf[10][90]={0},i,j,k,sum,s;
for(int i=1;i<=9;++i)vf[1][i]=1;
for(int i=1;i<=9;++i)for(int j=1;j<=9*i;++j)for(int k=0;k<=j&&k<=9;++k)vf[i][j]+=vf[i-1][j-k];
while(~scanf("%d",&s)){sum=0;
if(s==1)printf("10
");
else{
for(int i=1;i<=9;++i)sum+=vf[i][s];
printf("%d
",sum);}
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
01 가방, 완전 가방, 다중 가방 dp(동적 기획 입문 dp)01 가방은 2진법으로 직접 표시할 수 있지만 데이터 양이 너무 많으면 시간을 초과하는 것이 폭력이다.01 가방의 사상은 바로 이 물품에 대해 내가 넣은 가치가 큰지 안 넣은 가치가 큰지 비교하여 방정식 f[i][v...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.