D. Rocket

This is an interactive problem.

Natasha is going to fly to Mars. Finally, Natasha sat in the rocket. She flies, flies... but gets bored. She wishes to arrive to Mars already! So she decides to find something to occupy herself. She couldn't think of anything better to do than to calculate the distance to the red planet.

Let's define x

as the distance to Mars. Unfortunately, Natasha does not know x. But it is known that 1≤x≤m, where Natasha knows the number m. Besides, x and m

are positive integers.

Natasha can ask the rocket questions. Every question is an integer y

(1≤y≤m). The correct answer to the question is −1, if x<y, 0, if x=y, and 1, if x>y. But the rocket is broken — it does not always answer correctly. Precisely: let the correct answer to the current question be equal to t, then, if the rocket answers this question correctly, then it will answer t, otherwise it will answer −t

.

In addition, the rocket has a sequence p

of length n. Each element of the sequence is either 0 or 1. The rocket processes this sequence in the cyclic order, that is 1-st element, 2-nd, 3-rd, …, (n−1)-th, n-th, 1-st, 2-nd, 3-rd, …, (n−1)-th, n-th, …. If the current element is 1, the rocket answers correctly, if 0 — lies. Natasha doesn't know the sequence p, but she knows its length — n

.

You can ask the rocket no more than 60

questions.

Help Natasha find the distance to Mars. Assume, that the distance to Mars does not change while Natasha is asking questions.

Your solution will not be accepted, if it does not receive an answer 0

from the rocket (even if the distance to Mars is uniquely determined by the already received rocket's answers).

Input

The first line contains two integers m

and n (1≤m≤109, 1≤n≤30) — the maximum distance to Mars and the number of elements in the sequence p

.

Interaction

You can ask the rocket no more than 60

questions.

To ask a question, print a number y

(1≤y≤m

) and an end-of-line character, then do the operation flush and read the answer to the question.

If the program reads 0

, then the distance is correct and you must immediately terminate the program (for example, by calling exit(0)). If you ignore this, you can get any verdict, since your program will continue to read from the closed input stream.

If at some point your program reads −2

as an answer, it must immediately end (for example, by calling exit(0)). You will receive the "Wrong answer" verdict, and this will mean that the request is incorrect or the number of requests exceeds 60

. If you ignore this, you can get any verdict, since your program will continue to read from the closed input stream.

If your program's request is not a valid integer between −231

and 231−1

(inclusive) without leading zeros, then you can get any verdict.

You can get "Idleness limit exceeded" if you don't print anything or if you forget to flush the output.

To flush the output buffer you can use (after printing a query and end-of-line):

  • fflush(stdout) in C++;
  • System.out.flush() in Java;
  • stdout.flush() in Python;
  • flush(output) in Pascal;
  • See the documentation for other languages.

Hacking

Use the following format for hacking:

In the first line, print 3

integers m,n,x (1≤x≤m≤109, 1≤n≤30) — the maximum distance to Mars, the number of elements in the sequence p

and the current distance to Mars.

In the second line, enter n

numbers, each of which is equal to 0 or 1 — sequence p

.

The hacked solution will not have access to the number x

and sequence p

.

Example

Input

Copy

5 2
1
-1
-1
1
0

Output

Copy

1
2
4
5
3

Note

In the example, hacking would look like this:

5 2 3

1 0

This means that the current distance to Mars is equal to 3, Natasha knows that it does not exceed 5, and the rocket answers in order: correctly, incorrectly, correctly, incorrectly ...

Really:

on the first query (1) the correct answer is 1, the rocket answered correctly: 1;

on the second query (2) the correct answer is 1, the rocket answered incorrectly: −1;

on the third query (4) the correct answer is −1, the rocket answered correctly: −1;

on the fourth query (5) the correct answer is −1, the rocket answered incorrectly: 1;

on the fifth query (3) the correct and incorrect answer is 0.

 

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;

#define rep(i,a,b) for(int i=a;i<b;i++)
#define per(i,a,b) for(int i=b-1;i>=a;i--)


/*
看到interactive的第一反应,蒙逼
然后读了一下题目,感觉就是二分,只是不知道怎么写

格式:在printf后面加上,fflush

核心:查询两个边界的某一个,答案是唯一的,这样我们就能得到那个01串的真实情况

*/

int ok[70];

int ask(int x){
    printf("%d\n",x);
    fflush(stdout);//这就是清空缓冲区的语句
    int t;
    scanf("%d",&t);
    if(!t)exit(0);
    return t<0?0:1;
}

int main(){
    int m,n;
    scanf("%d %d",&m,&n);
    //直接问最小的数字,这样就只有唯一的回答,就可以得到序列S
    rep(i,0,n)  ok[i]=ask(1);
    int cnt=0;
    int l=1,r=m,mid;
    while(l<=r){
        mid=(l+r)>>1;
        //如果当前是0,回答的是1,我们猜的有点大
        //如果当前是1,回答的是0,我们猜确实大了
        if(ask(mid)^ok[cnt]){
            r=mid-1;
        }
        else{
            //如果当前是0,回答的是0,说明猜的有点小
            //如果当前是1,回答的是1,说明确实猜小了
            l=mid+1;
        }
        cnt=(cnt+1)%n;
    }
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值