题库练习 The Riddle of the Sphinx
← 上一题 下一题 →

A14042 | The Riddle of the Sphinx

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

What walks on four feet in the morning, two in the afternoon, and three at night?



This is an interactive problem. This problem doesn't support hacks.

Sphinx's duty is to guard the city of Thebes by making sure that no unworthy traveler crosses its gates. Only the ones who answer her riddle timely and correctly (or get an acc for short) are allowed to pass. As of those who fail, no one heard of them ever again...

So you don't have a choice but to solve the riddle. Sphinx has an array $a_1, a_2, \ldots, a_n$ of nonnegative integers strictly smaller than $2^b$ and asked you to find the maximum value among its elements. Of course, she will not show you the array, but she will give you $n$ and $b$ . As it is impossible to answer this riddle blindly, you can ask her some questions. For given $i, y$ , she'll answer you whether $a_i$ is bigger than $y$ . As sphinxes are not very patient, you can ask at most $3 \cdot (n + b) $ such questions.

Although cunning, sphinxes are honest. Even though the array can change between your queries, answers to the previously asked questions will remain valid.

输入格式

The first line contains two integers $n$ and $b$ ( $1 \leq n, b \leq 200$ ). The remaining parts of the input will be given throughout the interaction process.

输出格式

In each round your program must output a single line with an integer $i$ ( $0 \leq i \leq n$ ) and a binary string of length exactly $b$ denoting the binary representation of $y$ (most significant bit first).

If $i > 0$ , this line encodes the question: Is $a_i$ bigger than $y$ ?. There should be at most $3 \cdot (n+b)$ such lines; after each of them, the interactor will print yes or no in a single line.

If $i = 0$ , this is the last round of interaction, after which your program should terminate, and $y$ should be the maximal value among the elements of Sphinx's array. Note that this round does not count to the query limit.

Note that the interactor is adaptive.

After printing a query, do not forget to output the end of the line and flush the output. Otherwise, you will get Idleness limit exceeded. To do this, use:

- fflush(stdout) or cout.flush() in C++;
- System.out.flush() in Java;
- flush(output) in Pascal;
- stdout.flush() in Python;
- see the documentation for other languages.

If your solution does not correctly follow the interaction guideline above, it may receive an arbitrary verdict. Otherwise, your program will receive the Wrong Answer judgment if it reports the wrong maximum.

输入输出样例

输入 #1
5 3

yes

no

no

no

no

yes
输出 #1
5 101

5 110

4 100

3 101

2 001

1 000

0 110
输入 #2
4 3

no

no

no

no
输出 #2
1 000

2 000

3 000

4 000

0 000
输入 #3
1 1
输出 #3
0 0
C++ 编辑器
输入
输出