시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB14131392.857%

문제

Jacquez and Alia’s parents take them on many road trips. To keep themselves occupied, they play a triangular peg game, meant for one player. In the original game, one player has an equilateral triangle containing 15 holes (five holes per side of the triangle). Initially one hole is empty and the remaining 14 are filled with pegs. The player moves by picking up a peg to “jump” it over another peg, landing on an empty hole. Jumps must be in straight lines (horizontally or diagonally). The peg that is jumped over is removed. The goal of this game is to leave just one peg on the board. Figure J.1 shows the result of a jump in this game.

X                   X
X X                 X O
X X X      -->      X O X
X O X X             X X X X
X X X X X           X X X X X

Figure J.1: One possible move in the original game. On the left is an initial board, where X represents a peg and O represents an empty hole. The jump moves the right peg in the second (from top) row diagonally down and to the left, over the middle peg of the third row, which is removed.

Ultimately, Jacquez and Alia have gotten bored of playing this game individually. They decide to invent a version that they could play together. In the new version, each peg has a positive point value, and they alternate turns. During a player’s turn, they must make a jump if one is available. The score for a jump is the product of the two pegs involved in the jump.

The total score of a player is the sum of the scores of their jumps. The game ends when a player has no possible jumps to make. Each player’s goal is to maximize their own total score minus their opponent’s total score (at the end of the game). For example, Jacquez would prefer to win with a score of 100 to Alia’s score of 60 (with a differential of 40), than to win with a score of 1 000 to Alia’s score of 998 (with a smaller differential of only 2). Similarly, Alia wants to win by as much as possible over Jacquez.

For this version of the game, we can display the game state by replacing each X shown above with a corresponding value for that peg, and using a value of 0 (zero) for each of the open holes. Figure J.2 shows an example move.

3                   3
1 6                 1 0
1 7 8      -->      1 0 8
5 0 3 4             5 6 3 4
9 3 2 1 9           9 3 2 1 9

Figure J.2: One possible move in the new game, jumping the peg with value 6 over the peg with value 7. This move is worth 6 · 7 = 42 for Jacquez (since he moves first). The values are from the first sample input.

Jacquez has had some trouble winning. Write a program to calculate the best he can do, assuming that he starts and both players play optimally.

입력

The input consists of five lines, describing the initial state of the board. The ith (1 ≤ i ≤ 5) line contains i space separated integers, representing the pegs and holes on the ith row. Each of these integers is between 0 and 100, inclusive. A value of 0 represents a hole while the rest of the values represent pegs. It is possible for two different pegs to have the same value. Of the 15 input values it is guaranteed that exactly one is 0, thus all input boards start with exactly one hole.

출력

Output the value of Jacquez’s score minus Alia’s score at the end of the game, assuming Jacquez starts and both players play optimally.

예제 입력 1

3
1 6
1 7 8
5 0 3 4
9 3 2 1 9

예제 출력 1

21

예제 입력 2

1
2 3
4 5 6
7 8 9 10
11 12 0 13 14

예제 출력 2

19

예제 입력 3

100
1 17
99 3 4
0 76 33 42
12 13 14 15 16

예제 출력 3

2148

출처

ICPC > Regionals > North America > North America Qualification Contest > ACM-ICPC North America Qualifier 2018 J번

  • 문제를 만든 사람: Arup Guha