結果

問題 No.850 企業コンテスト2位
ユーザー treeonetreeone
提出日時 2019-07-05 23:32:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,412 bytes
コンパイル時間 2,449 ms
コンパイル使用メモリ 216,624 KB
実行使用メモリ 25,844 KB
平均クエリ数 216.14
最終ジャッジ日時 2024-07-16 17:36:43
合計ジャッジ時間 5,835 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
#define int long long
using namespace std;
typedef pair<int, int> P;
const int mod = 1000000007;
const int INF = 1e18;

signed main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    vector<int> a;
    rep(i, 0, n) a.push_back(i);
    int win = -1;
    vector<vector<int> > lose(n);
    while(1){
        if(a.size() == 1){
            win = a[0];
            break;
        }
        vector<int> b;
        for(int i = 0; i < a.size() / 2; i++){
            cout << "? " << a[i * 2] + 1 << ' ' << a[i * 2 + 1] + 1 << endl;
            int in;
            cin >> in;
            in--;
            b.push_back(in); 
            if(a[i * 2] == in) lose[a[i * 2]].push_back(a[i * 2 + 1]);
            else lose[a[i * 2 + 1]].push_back(a[i * 2]);
        }
        if(a.size() % 2 == 1){
            b.push_back(a.back());
        }
        a = b;
    }
    int m = lose[win].size();
    vector<P> c(m);
    rep(i, 0, m) c[i] = {0, lose[win][i]};
    rep(i, 0, m){
        rep(j, i + 1, m){
            cout << "? " << lose[win][i] + 1 << ' ' << lose[win][j] + 1 << endl;
            int in;
            cin >> in;
            in--;
            if(in == lose[win][i]) c[i].first++;
            else c[j].first++;
        }
    }
    sort(c.rbegin(), c.rend());
    cout << "! " << c[0].second + 1 << endl;
}
0