您的位置:首页 > 其它

uva 10912 Simple Minded Hashing (DP)

2014-01-06 12:29 465 查看
4th
IIUC
Inter-University Programming Contest, 2005
H
Simple Minded Hashing
Input: standard input

Output: standard output


Problemsetter:
Sohel Hafiz


All of you know a bit or two about hashing. It involves mapping an element into a numerical value using some mathematical function. In this problem we will consider a very ‘simple minded hashing’. It involves assigning numerical
value to the alphabets and summing these values of the characters.
For example, the string “acm” is mapped to 1 + 3 + 13 = 17. Unfortunately, this method does not give one-to-one mapping. The string “adl” also maps to 17 (1 + 4 + 12). This is called collision.
In this problem you will have to find the number of strings of length
L, which maps to an integer S, using the above hash function. You have to consider strings that have only lowercase letters in strictly ascending order.
Suppose L = 3 and S = 10, there are 4 such strings.

abg
acf
ade
bce

agb also produces 10 but the letters are not strictly in ascending order.
bh also produces 10 but it has 2 letters.
Input
There will be several cases. Each case consists of 2 integers L and S.
(0 < L, S < 10000). Input is terminated with 2 zeros.
Output
For each case, output Case #: where # is replaced by case number. Then output the result. Follow the sample for exact format. The result will fit in 32 bit signed integers.

Sample Input

Output for Sample Input
3 10

2 3

0 0
Case 1: 4

Case 2: 1


#include <iostream>
#include <cstdio>
using namespace std;

const int maxn = 10010;
int L , S;
int dp[maxn][30];

void initial(){
for(int i = 0;i < maxn;i++){
for(int j = 0;j < 30;j++){
dp[i][j] = 0;
}
}
}

void computing(){
dp[0][0] = 1;
for(int i = 1;i <= 26;i++){
for(int j = i-1;j >= 0;j--){
for(int k = maxn-1-i;k >= 0;k--){
dp[k+i][j+1] += dp[k][j];
}
}
}
}

int main(){
int t = 1;
initial();
computing();
while(cin >>L >> S && (L||S)){
printf("Case %d: " , t++);
if(L > 26){
cout << 0 << endl;
}else{
cout << dp[S][L] << endl;
}
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: