#abc141c. [abc141_c]Attack Survival
[abc141_c]Attack Survival
Problem Statement
Takahashi has decided to hold fastest-finger-fast quiz games. Kizahashi, who is in charge of making the scoreboard, is struggling to write the program that manages the players' scores in a game, which proceeds as follows.
A game is played by players, numbered to . At the beginning of a game, each player has points.
When a player correctly answers a question, each of the other players receives minus one () point. There is no other factor that affects the players' scores.
At the end of a game, the players with points or lower are eliminated, and the remaining players survive.
In the last game, the players gave a total of correct answers, the -th of which was given by Player . For Kizahashi, write a program that determines whether each of the players survived this game.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print lines. The -th line should contain Yes
if Player survived the game, and No
otherwise.
Sample Input 1
6 3 4
3
1
3
2
Sample Output 1
No
No
Yes
No
No
No
In the beginning, the players' scores are .
- Player correctly answers a question. The players' scores are now .
- Player correctly answers a question. The players' scores are now .
- Player correctly answers a question. The players' scores are now .
- Player correctly answers a question. The players' scores are now .
Players and , who have points or lower, are eliminated, and Player survives this game.
Sample Input 2
6 5 4
3
1
3
2
Sample Output 2
Yes
Yes
Yes
Yes
Yes
Yes
Sample Input 3
10 13 15
3
1
4
1
5
9
2
6
5
3
5
8
9
7
9
Sample Output 3
No
No
No
No
Yes
No
No
No
Yes
No