시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 1024 MB161311918.447%

문제

A new virus has appeared in country X, with a population of $10$ million people.  This time the country is prepared, and wants to start tracking its spread as quickly as possible.  It is currently only known that at least $100$ and at most $5\,000\,000$ people are infected, and your job is to provide a more accurate estimate on the number of infected people.

While it will take some time until tests get into mass production, one of the research labs is able to perform up to $50$ tests per day. To improve test efficiency, the researchers have decided to combine tests from multiple people. Each test takes in tissue samples from any chosen number of people, and gets a positive result if there is virus in at least one of them, otherwise a negative result. The tests are performed sequentially -- the result of each test becomes available before the next test can be performed.

Write a program which decides how to perform the tests and provides an estimate of the number of infected people which is within a factor $2$ of the actual number of infected people.

인터랙션

Your program can run up to $50$ tests, and must then produce an estimate of the number of infected people.  To issue a test, output "test $k$" for an integer $1 \le k \le 10^7$.  The judge will then provide a line which contains either "1" if the test for $k$ randomly chosen people came back positive, or "0" if it came back negative. The $k$ people will be chosen without replacement, i.e., the same person cannot be chosen twice.  However, the tests are independent, so a person may end up being chosen in more than one round.

To provide the estimate, output "estimate $x$", where $0 \le x \le 10^7$ is your estimate on the number of infected people. The answer will be treated as correct if it is within a factor $2$ of the correct answer $y$, i.e., if $y/2 \le x \le 2y$.

There will be a total of $100$ runs of your program. You may assume that each run is deterministic: making the same sequence of tests on the $i$th run will always result in the same sequence of test results. To facilitate testing of your solutions, we provide a simple tool that you can download from the Kattis page for this problem. Remember to flush your standard output buffer for every line you output!

예제 입력 1


1

0

0

1

예제 출력 1

test 20

test 20

test 23

test 22

estimate 250000

힌트

The sample interaction above is shown only for the purpose of illustrating the interaction protocol: there is no way the solution could reliably conclude the given estimate of $250\,000$ infected people based on the four tests performed.

채점 및 기타 정보

  • 예제는 채점하지 않는다.