結果

問題 No.2085 Directed Complete Graph
ユーザー 259_Momone259_Momone
提出日時 2022-09-27 02:00:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 2,438 ms
コンパイル使用メモリ 264,288 KB
実行使用メモリ 25,452 KB
平均クエリ数 2534.65
最終ジャッジ日時 2024-06-02 00:40:05
合計ジャッジ時間 5,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,220 KB
testcase_01 AC 20 ms
24,964 KB
testcase_02 AC 141 ms
25,452 KB
testcase_03 AC 132 ms
24,556 KB
testcase_04 AC 149 ms
24,556 KB
testcase_05 AC 79 ms
24,940 KB
testcase_06 AC 81 ms
25,076 KB
testcase_07 AC 142 ms
24,940 KB
testcase_08 AC 108 ms
25,196 KB
testcase_09 AC 136 ms
25,196 KB
testcase_10 AC 146 ms
24,940 KB
testcase_11 AC 146 ms
25,196 KB
testcase_12 AC 141 ms
24,812 KB
testcase_13 AC 142 ms
25,196 KB
testcase_14 AC 144 ms
25,196 KB
testcase_15 AC 20 ms
24,580 KB
testcase_16 AC 19 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>

int main() {
    using namespace std;
    unsigned long N;
    cin >> N;
    vector<unsigned long> A{0, 1, 10000};
    const auto query{[](auto i, auto j) -> bool {
        if(i == 0)return true;
        if(i == 10000)return false;
        cout << "? " << i << " " << j << endl;
        unsigned long t;
        cin >> t;
        return t;
    }};
    for(unsigned long i{2}; i <= N; ++i){
        unsigned long l{0}, r{size(A) + 1};
        while(l + 1 < r){
            auto m{(l + r) / 2};
            (query(A[m], i) ? l : r) = m;
        }
        A.insert(begin(A) + l + 1, i);
    }
    A.pop_back();
    A.erase(begin(A));
    cout << "!" << endl;
    cout << N - 1 << endl;
    for(const auto a : A)cout << a << " ";
    cout << endl;
    return 0;
}
0