#Lutece0673. I've Got Your Back(gammon)
I've Got Your Back(gammon)
Migrated from Lutece 673 I've Got Your Back(gammon)
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
A friend of yours is working on an AI program to play backgammon, and she has a small problem. At the end of the game, each player's pieces are moved onto a set of board positions called points, numbered through . The pieces can be distributed in any manner across these points: all could be on point ; could be on point , on point , on point and on point ; etc. Your friend wants to store all these possible configurations (of which there are ) into a linear array, but she needs a mapping from configuration to array location. It seems logical that the configuration with all pieces on point should correspond to array location , and the configuration of all pieces on point should correspond to the last array location. It's the ones in between that are giving her problems.
That's why she has come to you.
You decide to specify a configuration by listing the number of pieces on each point, starting with point 6. For example, the two configurations described above could be represented by and . Then you can order the configurations in lexicographic ordering, starting with , then ; ; ;; ; ; , etc., ending with . Now all you need is a way to map these orderings to array indices. Literally, that's all you need, because that's what this problem is all about.
Input
Each test case will consist of one line, starting with a single character, either m
or u
. If it is an m
it will be followed by a configuration and you must determine what array index it gets mapped to. If it is a u
then it will be followed by an integer array index , , and you must determine what configuration gets mapped to it. A line containing the single character e
will end input.
Output
For each test case, output the requested answer either an array index or a configuration. Follow the format in the examples below.
Samples
m 0 0 0 0 0 15
u 15503
e
Case 1: 0
Case 2: 15 0 0 0 0 0
Resources
2012 East Central Regional Contest