#Lutece0674. Parencedence!
Parencedence!
Migrated from Lutece 674 Parencedence!
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
Parencedence is a brand new two-player game that is sweeping the country (that country happens to be Liechtenstein, but no matter). The game is played as follows: a computer produces an arithmetic expression made up of integer values and the binary operators +
, -
and *
. There are no parentheses in the expression. If Player goes first he/she can put parentheses around any one operator and its two operands; the parenthesized expression is evaluated and its value is used in its place. Player then does the same, and the game proceeds accordingly, Player and Player alternating turns. Player 's object is to maximize the final value, while Player 's object is to minimize it. A sample round might go as follows:
- Initial expression:
- Player 's move:
- Player 's move:
- Player 's move:
- Player 's move:
A game of Parencedence is played in two rounds, each using the same initial unparenthesized expression: in the first round, Player goes first, and in the second, Player goes first (Player is always trying to maximize the result and Player is always trying to minimize the result in both rounds, regardless of who goes first). Let be the result of the first round and the result of the second round. If , then Player wins; if then Player wins; otherwise the game ends in a tie. Your job is to write a program to determine the final result assuming both players play as well as possible.
Input
The first line of the input file will contain an integer n indicating the number of test cases. The test cases will follow, one per line, each consisting of a positive integer followed by an arithmetic expression. The value of m indicates the number of binary operators in the arithmetic expression. The only operators used will be +
, -
and *
. The -
operator can appear as both a unary and a binary operator. All binary operators will be surrounded by a single space on each side. There will be no space after any unary -
. No combination of parentheses will ever result in an integer overflow or underflow.
Output
For each test case, output the case number followed by three lines. The first contains the first set of operands and operator to be parenthesized in round (when Player goes first) and . The second line contains the analagous output for round . The third line contains either the phrase Player 1 wins
,Player 2 wins
or Tie
depending on the values of and . In the first two output lines if there is a choice between which operator should be parenthesized first, use the one which comes earliest in the original expression. Follow the format used in the examples.
Samples
2
4 3 - 6 * 4 - 7 + 12
2 45 - -67 - 3
Case 1:
Player 1 (7+12) leads to -2
Player 2 (3-6) leads to -27
Player 2 wins
Case 2:
Player 1 (-67-3) leads to 115
Player 2 (45--67) leads to 109
Player 1 wins
Resources
2012 East Central Regional Contest