#codefestival2016qualBb. [codefestival_2016_qualB_b]Qualification simulator
[codefestival_2016_qualB_b]Qualification simulator
Problem Statement
There are participants in the CODE FESTIVAL 2016 Qualification contests. The participants are either students in Japan, students from overseas, or neither of these.
Only Japanese students or overseas students can pass the Qualification contests. The students pass when they satisfy the conditions listed below, from the top rank down. Participants who are not students cannot pass the Qualification contests.
- A Japanese student passes the Qualification contests if the number of the participants who have already definitively passed is currently fewer than .
- An overseas student passes the Qualification contests if the number of the participants who have already definitively passed is currently fewer than and the student ranks -th or above among all overseas students.
A string is assigned indicating attributes of all participants. If the -th character of string is a
, this means the participant ranked -th in the Qualification contests is a Japanese student; b
means the participant ranked -th is an overseas student; and c
means the participant ranked -th is neither of these.
Write a program that outputs for all the participants in descending rank either Yes
if they passed the Qualification contests or No
if they did not pass.
Constraints
- is characters long.
- consists only of the letters
a
,b
andc
.
Input
Inputs are provided from Standard Input in the following form.
Output
Output lines. On the -th line, output Yes
if the -th participant passed the Qualification contests or No
if that participant did not pass.
Sample Input 1
10 2 3
abccabaabb
Sample Output 1
Yes
Yes
No
No
Yes
Yes
Yes
No
No
No
The first, second, fifth, sixth, and seventh participants pass the Qualification contests.
Sample Input 2
12 5 2
cabbabaacaba
Sample Output 2
No
Yes
Yes
Yes
Yes
No
Yes
Yes
No
Yes
No
No
The sixth participant is third among overseas students and thus does not pass the Qualification contests.
Sample Input 3
5 2 2
ccccc
Sample Output 3
No
No
No
No
No