码迷,mamicode.com
首页 > 其他好文 > 详细

Gym - 101375H MaratonIME gets candies 交互题

时间:2018-03-05 22:24:26      阅读:450      评论:0      收藏:0      [点我收藏+]

标签:src   alt   str   col   png   using   题解   std   iostream   

交互题介绍:https://loj.ac/problem/6

题意:输出Q X ,读入><= 来猜数,小于50步猜出就算过样例

题解:根本不需要每次输出要打cout.flush()。。。

ac:

#include<iostream>
#include<string>
using namespace std;
int main() {
    int l = 1, r = 1e9;
    while (l <= r) {
        int mid = (l + r) / 2;
        cout << Q <<   << mid << endl;
        
        string c;
        cin >> c;
        //if (c == "=") {  break; }
        if (c == "<") r = mid - 1;
        else l = mid + 1;
    }
    cout << Q <<   << l << endl;
    
}

 

//看到一个Bangladesh University of Business & Technology的老哥的代码,给跪了(借用一下)

 

  技术分享图片

Gym - 101375H MaratonIME gets candies 交互题

标签:src   alt   str   col   png   using   题解   std   iostream   

原文地址:https://www.cnblogs.com/SuuT/p/8511481.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!