Problem Statement :
For example, the string 635 can only be grouped in one sub-group [635] or in two sub-groups as follows: [6-35] (since 6 < 8.) Another example is the string 1117 which can be grouped in one sub-group [1117] or as in the
following: [1-117], [1-1-17], [1-11-7], [1-1-1-7], [11-17],and [111-7] but not any more, hence the total number of possibilities is 7.
Write a program that computes the total number of possibilities of such groupings for a given string of digits.
The end of the test cases is identified by a line made of the word "bye" (without the quotes.) Such line is not part of the test cases.
Given a non-empty string composed of digits only, we may group these digits into sub-groups (but maintaining their original order) if, for every sub-group but the last one, the sum of the digits in a sub-group is less than or equal to the sum of the digits in the sub-group immediately on its right. Needless to say, each digit will be in exactly one sub-group.
For example, the string 635 can only be grouped in one sub-group [635] or in two sub-groups as follows: [6-35] (since 6 < 8.) Another example is the string 1117 which can be grouped in one sub-group [1117] or as in the
following: [1-117], [1-1-17], [1-11-7], [1-1-1-7], [11-17],and [111-7] but not any more, hence the total number of possibilities is 7.
Write a program that computes the total number of possibilities of such groupings for a given string of digits.
Input
Your program will be tested on a number of test cases. Each test case is specified on a separate line. Each line contains a single string no longer than 25, and is made of decimal digits only.
The end of the test cases is identified by a line made of the word "bye" (without the quotes.) Such line is not part of the test cases.
Output
For each test case, write the result using the following format:
k. n
where k is the test case number (starting at 1,) and n is the result of this test case.
Sample
input 635 1117 9876 bye output 1. 2 2. 7 3. 2
Solution :
#include <iostream> #include <cstdio> using namespace std; #define sz 26 int digit[sz],length; int nWay(int pos,int prevSum){ int ans = 0,sum = 0; if(pos == length) return 1; for(int i = pos;i < length;i++){ sum += digit[i]; if(sum >= prevSum) ans += nWay(i+1,sum); } return ans; } int main(){ int i,j,k,l,cas = 1; char s[sz]; while(scanf("%s",s)==1){ if(s[0] == 'b') break; for(i=0; s[i]; i++){ digit[i] = s[i] - '0'; } length = i; printf("%d. %d\n",cas++,nWay(0,0)); } return 0; }
1 comment:
Please discuss the solution technique, not only code.
Post a Comment