Problem C
Compass Card Sales

To decide how unique a card is in the deck, she proceeds as
follows. For each of the three colors she finds the closest
other card in both directions, and then computes the angle
between these two other cards. For instance if she has three
cards with red angles
By summing the uniqueness values over the three colours, Katla finds how unique each card is. When selling a card, Katla sells the currently least unique card (smallest uniqueness value). If two cards have the same uniqueness value, she will sell the one with the higher ID first. After each card is sold, the uniqueness values of the remaining cards are updated before selling the next card.
Input
The first line of input contains an integer
Output
Output
Sample Input 1 | Sample Output 1 |
---|---|
3 42 1 1 1 90 1 1 2 110 1 1 3 |
2 3 1 |
Sample Input 2 | Sample Output 2 |
---|---|
4 0 0 0 0 120 120 120 120 240 240 240 240 0 120 240 2017 |
2017 240 120 0 |