Hide

Problem C
Coin Stacks

/problems/coinstacks/file/statement/en/img-0001.jpg
Picture by KMR Photography via Wikimedia Commons, cc by
A and B are playing a collaborative game that involves $n$ stacks of coins, numbered from $1$ to $n$. Every round of the game, they select a nonempty stack each, but they are not allowed to choose the same stack. They then remove a coin from both the two selected stacks and then the next round begins.

The players win the game if they manage to remove all the coins. Is it possible for them to win the game, and if it is, how should they play?

Input

The first line of input contains an integer $n$ ($2 \le n \le 50$), the number of coin stacks. Then follows a line containing $n$ nonnegative integers $a_1, a_2, \ldots , a_ n$, where $a_ i$ is the number of coins in the $i$’th stack. The total number of coins is at most $1\, 000$.

Output

If the players can win the game, output a line containing “yes”, followed by a description of the moves. Otherwise output a line containing “no”. When describing the moves, output one move per line, each move being described by two distinct integers $a$ and $b$ (between $1$ and $n$) indicating that the players remove a coin from stacks $a$ and $b$. If there are several possible solutions, output any one of them.

Sample Input 1 Sample Output 1
3
1 4 3
yes
1 2
2 3
2 3
2 3
Sample Input 2 Sample Output 2
3
1 1 1
no

Please log in to submit a solution to this problem

Log in