atcoder#APC001C. Vacant Seat
Vacant Seat
Score : points
Problem Statement
This is an interactive task.
Let be an odd number at least .
There are seats arranged in a circle. The seats are numbered through . For each (), Seat and Seat are adjacent. Also, Seat and Seat are adjacent.
Each seat is either vacant, or oppupied by a man or a woman. However, no two adjacent seats are occupied by two people of the same sex. It can be shown that there is at least one empty seat where is an odd number at least .
You are given , but the states of the seats are not given. Your objective is to correctly guess the ID number of any one of the empty seats. To do so, you can repeatedly send the following query:
- Choose an integer (). If Seat is empty, the problem is solved. Otherwise, you are notified of the sex of the person in Seat .
Guess the ID number of an empty seat by sending at most queries.
Constraints
- is an odd number.
Input and Output
First, is given from Standard Input in the following format:
N
Then, you should send queries. A query should be printed to Standart Output in the following format. Print a newline at the end.
i
The response to the query is given from Standard Input in the following format:
s
Here, is Vacant
, Male
or Female
.
Each of these means that Seat is empty, occupied by a man and occupied by a woman, respectively.
Notice
- Flush Standard Output each time you print something. Failure to do so may result in
TLE
. - Immediately terminate the program when is
Vacant
. Otherwise, the verdict is indeterminate. - The verdict is indeterminate if more than queries or ill-formatted queries are sent.
Sample Input / Output 1
In this sample, , and Seat , , are occupied by a man, occupied by a woman and vacant, respectively.
Input | Output |
---|---|
3 | |
0 | |
Male | |
1 | |
Female | |
2 | |
Vacant |