結果

問題 No.850 企業コンテスト2位
ユーザー face4face4
提出日時 2019-07-08 23:05:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 967 bytes
コンパイル時間 930 ms
コンパイル使用メモリ 72,276 KB
実行使用メモリ 25,220 KB
平均クエリ数 200.11
最終ジャッジ日時 2024-07-16 17:44:18
合計ジャッジ時間 3,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,836 KB
testcase_01 AC 22 ms
24,836 KB
testcase_02 AC 20 ms
25,220 KB
testcase_03 AC 21 ms
24,964 KB
testcase_04 AC 23 ms
25,220 KB
testcase_05 AC 21 ms
24,580 KB
testcase_06 AC 21 ms
24,836 KB
testcase_07 AC 24 ms
25,220 KB
testcase_08 AC 25 ms
24,580 KB
testcase_09 AC 25 ms
25,220 KB
testcase_10 AC 30 ms
24,580 KB
testcase_11 AC 30 ms
24,580 KB
testcase_12 AC 28 ms
25,220 KB
testcase_13 AC 31 ms
24,452 KB
testcase_14 AC 30 ms
25,092 KB
testcase_15 AC 30 ms
24,836 KB
testcase_16 AC 30 ms
25,220 KB
testcase_17 AC 32 ms
24,836 KB
testcase_18 AC 30 ms
25,220 KB
testcase_19 AC 29 ms
25,220 KB
testcase_20 AC 29 ms
25,220 KB
testcase_21 AC 31 ms
25,220 KB
testcase_22 AC 29 ms
25,220 KB
testcase_23 AC 30 ms
25,220 KB
testcase_24 AC 29 ms
24,964 KB
testcase_25 AC 30 ms
24,580 KB
testcase_26 AC 29 ms
24,964 KB
testcase_27 AC 20 ms
24,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;

vector<int> defeat[300];

int ask(int x, int y){
    cout << "? " << x << " " << y << endl << flush;
    int ret;
    cin >> ret;
    if(ret == x)    defeat[x].push_back(y);
    else            defeat[y].push_back(x);
    return ret;
}

void answer(int x){
    cout << "! " << x << endl << flush;
}

void shrink(vector<int> &a){
    while(a.size() > 2){
        vector<int> b;
        int pos = 0;
        while(pos+1 < a.size()){
            b.push_back(ask(a[pos], a[pos+1]));
            pos += 2;
        }
        if(pos < a.size())  b.push_back(a[pos]);
        a = b;
    }
}

int main(){
    int n;
    cin >> n;
    vector<int> a;
    for(int i = 1; i <= n; i++) a.push_back(i);
    shrink(a);
    int top = ask(a[0], a[1]);
    shrink(defeat[top]);
    if(defeat[top].size() == 1){
        answer(defeat[top][0]);
    }else{
        answer(ask(defeat[top][0], defeat[top][1]));
    }
    return 0;
}
0