F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Dart-a-Mania

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 481    Accepted Submission(s): 6


Problem Description
The game of darts has many variations. One such variation is the game of 301. In the game of 301 each player starts with a score of 301 (hence the name). Each player, in turn, throws three darts to score points which are subtracted from the player's current score. For instance, if a player has a current score of 272 and scores 55 points with the three darts, the new score would be 217. Each dart that is tossed may strike regions on the dartboard that are numbered between 1 and 20. (A value of zero indicates that the player either missed the dartboard altogether or elected to not throw the dart.) A dart that strikes one of these regions will either score the number printed on the dartboard, double the number printed, or triple the number printed. For example, a player may score 17, 34, or 51 points with a toss of one dart that hits one of the regions marked with a 17. A third way to score points with one dart is to hit the BULLS EYE which is worth 50 points. (There is no provision for doubling or tripling the bull's eye score.)

The first player to reduce his score to exactly zero wins the game. If a player scores more points than his/her current score, the player is said to have "busted" and the new score is returned to the last current score.

Given a player's current dart score, write a program to calculate all the possible combinations and permutations of scores on throwing three darts that would reduce the player's score to exactly zero (meaning the player won the game). The output of the program should contain the number of combinatons and permutations found.

For example, if the player's current score is 2, then there would be two combinations and six permutations. The combinations would be: 1) obtain a score of 2 on any one dart and zero on the other two, and 2) obtain a score of one on two different darts and zero on the third dart. The order in which this is accomplished is not important.

With permutations the order is significant; therefore the six permutations would be as follows:

Dart 1: 2 0 0 1 1 0
Dart 2: 0 2 0 1 0 1
Dart 3: 0 0 2 0 1 1

(Note: The program doesn't print out the actual permutations & combinations, just the total number of each.)

 

Input
The input file, DARTS.IN, contains a list of integers (each <= 999), one per line, that represent several players' current scores. A value of zero or less will signify the end of the input file.
 

Output
For each positive integer in the input file, 2 or 3 line(s) will be written to the output file, DARTS.OUT.

If the score can be reduced to zero, your program should write the lines:

NUMBER OF COMBINATIONS THAT SCORES x IS c.
NUMBER OF PERMUTATIONS THAT SCORES x IS p.

where x is the value of the player's score while c and p are the total number of combinations and permutations possible, respectively.
If it is impossible to reduce the player's score to zero, write the line:

THE SCORE OF x CANNOT BE MADE WITH THREE DARTS.

After the line(s) above are printed, your program should write a line of 70 asterisks to separate output for different scores. The message "END OF OUTPUT" should appear at the end of the output file.
 

Sample Input
162 175 2 68 211 114 -100
 

Sample Output
NUMBER OF COMBINATIONS THAT SCORES 162 I9 7. NUMBER OF PERMUTATIONS THAT SCORES 162 I9 28. *********************************************************************** THE SCORE OF 175 CANNOT BE MADE WITH THREE DARTS. *********************************************************************** NUMBER OF COMBINATIONS THAT SCORES 2 I9 2. NUMBER OF PERMUTATIONS THAT SCORES 2 I9 6. *********************************************************************** NUMBER OF COMBINATIONS THAT SCORES 68 I9 187. NUMBER OF PERMUTATIONS THAT SCORES 68 I9 1056. *********************************************************************** THE SCORE OF 211 CANNOT BE MADE WITH THREE DARTS. *********************************************************************** NUMBER OF COMBINATIONS THAT SCORES 114 I9 82. NUMBER OF PERMUTATIONS THAT SCORES 114 I9 445. *********************************************************************** END OF OUTPUT
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-04-27 11:22:20, Gzip enabled