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

CF1064 E - Dwarves, Hats and Extrasensory Abilities

时间:2018-10-16 20:53:45      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:ring   clu   stdout   题意   bool   处理   mes   std   check   

题意

交互题, 本来应该是在平面上进行的.
实际上换成一条直线就可以, 其实换成在平面上更复杂一些.

Solution

假设\(l\)点是黑点, \(r\)处是白点, 那么就把下一个点的位置放置在\(l + r / 2\)处, 然后递归处理.

Code

#include <ctype.h>
#include <stdio.h>
#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
const int N = 39;

struct Node {
    int color, position;
    bool operator < (const Node &x) const {
        return color == x.color ? position < x.position : color < x.color;
    }
} p[N];
const int XXX = 4323;

bool Check(int position, int now) {
    string s;
    p[now].position = position;
    printf("%d %d\n", XXX, position);
    fflush(stdout);
    cin >> s;
    if (s == "white") return p[now].color = 0;
    else return p[now].color = 1;
}

int main() {
    int n;
    scanf("%d", &n);
    int l = 1, r = 1e9, mid;
    for (int i = 1; i <= n; i += 1) {
        mid = l + r >> 1;
        if (Check(mid, i)) r = mid;
        else l = mid;
    }
    int res = 0;
    for (int i = 1; i < n; i += 1)
        std:: swap(p[i], p[i + 1]);
    std::sort(p + 1, p + 1 + n);
    for (int i = 2; i <= n; i += 1)
        if (p[i].color != p[i - 1].color) {
            res = p[i - 1].position + 1;
            break;  
        }  
    if (res) printf("%d %d %d %d\n", XXX - 1, res - 1, XXX + 1, res), fflush(stdout);
    else printf("%d %d %d %d\n", XXX - 1, res, XXX + 1, res), fflush(stdout);

    return 0;
}

CF1064 E - Dwarves, Hats and Extrasensory Abilities

标签:ring   clu   stdout   题意   bool   处理   mes   std   check   

原文地址:https://www.cnblogs.com/qdscwyy/p/9800439.html

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