(Borrowed from ACM programming team 2002)
program filename for this assignment: bumpkin.cpp
The people of Bumpus (Bumpkins) are a fun, happy, peace-loving people who have a big problem. They have very little depth perception and are constantly running into doors. TheyĆve asked you to write a program to let them know when they should duck going through a doorway. Since Bumpkins love fun, some of their doorways have been made intentionally short of force other Bumpkins to either crawl or limbo through the door. Unfortunately, the Bumpkins don't all use the same set of measurements, so some heights are measured in inches, others in feet, others in yards, others in centimeters, and others in meters. To do the conversions, recall that:
1 inch = 2.52 cm
1 yard = 3 ft
1 foot = 12 inches
1 meter = 100 cm
The input file will begin with a single line, telling you how many Bumpkins want help. Then, for each Bumpkin, there will be data about the Bumpkin and the doorways they reach. The first line of each dataset will give you the Bumpkin's name (all Bumpkins have names of exactly 6 characters), an integer n, the number of doors to process for this Bumpkin (n > 0), and the Bumpkin's height, a floating point number followed by exactly one blank and then one of 'i', 'f', 'y', 'c', or 'm' (representing inches, feet, yards, centimeters, and meters). The next n lines will have the height of the doorways in the bumpkin's life, one per line. Each height will be a floating point number followed by exactly one blank and one of 'i', 'f', 'y', 'c', or 'm' (representing inches, feet, yards, cm, and meters).
For each bumpkin, print the name of the Bumpkin on one line and then for each door, print the way the Bumpkin should travel through the door. Decide on a mode of travel based on the table below, where b is the height of the Bumpkin, d is the height of the door (expressed in the same units):
|
Door Height |
Travel Method |
|
d > b * 1.25 |
Stilts |
|
b * 1.25 >= d > b *1.05 |
Walk |
|
b * 1.05 >= d > b * 0.65 |
Duck |
|
b * 0.65 >= d > b * 0.40 |
Crawl |
|
b * 0.40 >= d > b * 0.25 |
Limbo |
|
b * 0.25 >= d |
Blocked |
Have one blank line after each data set.
The following are sample inputs and outputs. Note that the input must be in a file called bumpkin.in.
2
Mookin 3 150.4 c
75 i
2 f
151 c
Kimkin 1 67.3 i
204.5 c
Mookin
Doorway 1: Stilts
Doorway 2: Crawl
Doorway 3: Duck
Kimkin
Doorway 1: Walk
The evaluation of the assignment will be focused on your use of functions in your design and implementation. The standard criteria will also be evaluated.
See instructions in WebCT regarding submission.