Problem F
Ski Traffic

Students at the Colorado School Of Mines love to go skiing, but hate waiting in traffic. A student, Sam, has come up with a precise algorithm via machine learning to determine how long it will take to travel to a ski hill:
-
The expected time is doubled if it’s a weekend (i.e. a Saturday or a Sunday).
-
The expected time is doubled if there’s bad weather on I-70.
-
The expected time is tripled if it recently snowed on the Front Range.
-
The expected time is tripled if it’s a holiday.
Note that many of these rules may apply to a single day. Sam would like to use her algorithm to predict how long it will take to travel to the hill. It is up to you to implement Sam’s algorithm!
Input
The input consists of six lines; the following list gives the content of each of the lines.
-
The name of the hill (for example, “Lockstone”, “Skistone”, “Navajo Basin”, etc.)
-
The time needed to get to the ski area assuming perfect conditions; the line is of the format “
: ” where the integer is the number of hours ( ) and the integer is the number of minutes ( ). is always given as two digits (i.e. zero-padded on the left) but may not be. -
The day of the week, which is one of strings “mon”, “tue”, “wed”, “thr”, “fri”, “sat”, or “sun”
-
A “1” if the weather’s bad on I-70 and a “0” otherwise
-
A “1” if it recently snowed on the Front Range and a “0” otherwise
-
A “1” if it’s a holiday and a “0” otherwise
Output
Output the expected time in the format “
Sample Input 1 | Sample Output 1 |
---|---|
Keystone 1:00 sat 1 1 0 |
12:00 |
Sample Input 2 | Sample Output 2 |
---|---|
Arapahoe Basin 0:45 mon 0 0 1 |
2:15 |