MaratonIME gets candies/Gym - 101375H/二分+交互

MaratonIME gets candies/Gym - 101375H/二分+交互

题目

Obs: this is an interactive problem. More information is under the “Interaction” section.
MaratonIME is gathering to start another group practice. This time, Renzo decided to reward the students with candies as they solve problems. Curious as they are, the members of MaratonIME started to guess how many candies did Renzo bring. For each question, Renzo answered if the amount of candies was higher, lower or equal to the number asked.
Breno, noticing that the amount of candies could be very high, decided to limit the number of queries to 50. This way, the practice would start as soon as possible.
Renzo bought at least 1 and no more than 109 candies. Find how many candies were bought by Renzo with no more than 50 questions.
题目来源:Gym - 101375H
题目链接

题意

交互型的题,需要你猜一个数,你每次可以询问一个数,然后会给你三种结果,>,<,=,>就是你询问的数比正确答案大,>就是你询问的数比正确答案小,=就是你询问的数是正确的,最多只能问50次。

解法

二分,每次询问mid,如果是>就找左边,是<就找右边,知道找到为止。

代码:

#include <stdio.h>
#include <iostream>
#include <algorithm>
#include <cstring>
#include <windows.h>
using namespace std;
char st;
int main()
{
	int L=1,R=1000000000;
	while (L<=R) 
	{
		int mid=(L+R)/2;
		printf("Q %d\n",mid);
		cout.flush();
	    cin>>st;
		if (st=='>') L=mid+1;  else 
		if (st=='<') R=mid-1;  else 
		if (st=='=') break;
	}
	return 0;
} 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值