11137 - Ingenuous Cubrency

来源:互联网 发布:罗马军团到中国 知乎 编辑:程序博客网 时间:2024/04/29 04:23

Problem I: Ingenuous Cubrency

People in Cubeland use cubic coins. Not only the unit of currency iscalled acube but also the coins are shaped like cubes andtheir values are cubes. Coins with values of all cubic numbers up to9261 (= 213), i.e., coins with the denominations of 1, 8,27, ..., up to 9261cubes, are available inCubeland.

Your task is to count the number of ways to pay a given amountusing cubic coins of Cubeland.For example, there are 3 ways to pay 21cubes:twenty one 1 cube coins, orone 8 cube coin and thirteen 1cube coins, ortwo 8 cube coin and five 1 cube coins.

Input consists of lines each containing an integer amount tobe paid. You may assume that all the amounts are positive and less than 10000.

For each of the given amounts to be paid output one line containing asingle integer representing the number of ways to pay the given amountusing the coins available in Cubeland.

Sample input

10 21779999

Output for sample input

2322440022018293
#include<stdio.h>int main(){int s,i,j;long long m[22],d[10001]={0};for(i=1;i<=21;i++)m[i]=i*i*i;d[0]=1;for(i=1;i<=21;i++)for(j=0;j<10001;j++)if(j>=m[i])d[j]+=d[j-m[i]];while(scanf("%lld",&s)!=EOF)printf("%lld\n",d[s]);return 0;}

原创粉丝点击