#icpc2013springc. [icpc2013spring_c]Iyasugigappa
[icpc2013spring_c]Iyasugigappa
$(function(){document.getElementById("fixed-server-timer").style.display = "none";})
Problem Statement
Three animals Frog, Kappa (Water Imp) and Weasel are playing a card game.
In this game, players make use of three kinds of items: a guillotine, twelve noble cards and six action cards. Some integer value is written on the face of each noble card and each action card. Before stating the game, players put twelve noble cards in a line on the table and put the guillotine on the right of the noble cards. And then each player are dealt two action cards. Here, all the noble cards and action cards are opened, so the players share all the information in this game.
Next, the game begins. Each player takes turns in turn. Frog takes the first turn, Kappa takes the second turn, Weasel takes the third turn, and Frog takes the fourth turn, etc. Each turn consists of two phases: action phase and execution phase in this order.
In action phase, if a player has action cards, he may use one of them. When he uses an action card with value on the face , -th (1-based) noble card from the front of the guillotine on the table is moved to in front of the guillotine, if there are at least noble cards on the table. If there are less than cards, nothing happens. After the player uses the action card, he must discard it from his hand.
In execution phase, a player just remove a noble card in front of the guillotine. And then the player scores points, where is the value of the removed noble card.
The game ends when all the noble cards are removed.
Each player follows the following strategy:
- Each player assume that other players would follow a strategy such that their final score is maximized.
- Actually, Frog and Weasel follows such strategy.
- However, Kappa does not. Kappa plays so that Frog's final score is minimized.
- Kappa knows that Frog and Weasel would play under ``wrong'' assumption: They think that Kappa would maximize his score.
- As a tie-breaker of multiple optimum choises for each strategy, assume that players prefer to keep as many action cards as possible at the end of the turn.
- If there are still multiple optimum choises, players prefer to maximuze the total value of remaining action cards.
Your task in this problem is to calculate the final score of each player.
Input
The input is formatted as follows.
The first line of the input contains twelve integers , , …, (). is integer written on -th noble card from the guillotine. Following three lines contains six integers , …, (). , are values on Frog's action cards, , are those on Kappa's action cards, and , are those on Weasel's action cards.
Output
Print three space-separated integers: the final scores of Frog, Kappa and Weasel.
Sample Input 1
3 2 1 3 2 1 3 2 1 3 2 1
1 1
1 1
1 1
Output for the Sample Input 1
4 8 12
Sample Input 2
4 4 4 3 3 3 2 2 2 1 1 1
1 2
2 3
3 4
Output for the Sample Input 2
8 10 12
Sample Input 3
0 0 0 0 0 0 0 -2 0 -2 5 0
1 1
4 1
1 1
Output for the Sample Input 3
-2 -2 5
Source Name
Japan Alumni Group Spring Contest 2013