結果

問題 No.2085 Directed Complete Graph
ユーザー ぷらぷら
提出日時 2022-09-26 01:29:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,252 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 207,620 KB
実行使用メモリ 25,452 KB
平均クエリ数 1908.00
最終ジャッジ日時 2024-06-02 00:21:54
合計ジャッジ時間 4,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
24,964 KB
testcase_01 AC 19 ms
24,964 KB
testcase_02 WA -
testcase_03 AC 146 ms
25,196 KB
testcase_04 WA -
testcase_05 AC 59 ms
25,196 KB
testcase_06 AC 63 ms
24,556 KB
testcase_07 AC 101 ms
24,940 KB
testcase_08 AC 78 ms
25,452 KB
testcase_09 AC 104 ms
24,940 KB
testcase_10 AC 109 ms
24,556 KB
testcase_11 AC 105 ms
25,452 KB
testcase_12 AC 105 ms
24,812 KB
testcase_13 AC 107 ms
25,196 KB
testcase_14 AC 107 ms
24,940 KB
testcase_15 AC 20 ms
25,220 KB
testcase_16 AC 20 ms
24,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N;
    cin >> N;
    vector<int>ans;
    ans.push_back(1);
    for(int i = 2; i <= N; i++) {
        cout << "? " << ans.back() << " " << i << endl;
        int f;
        cin >> f;
        if(f) {
            ans.push_back(i);
            continue;
        }
        if(i == 2) {
            ans = {2,1};
            continue;
        }
        int l = -1,r = i-2;
        while(l+1 < r) {
            int mid = (l+r)/2;
            cout << "? " << ans[mid] << " " << i << endl;
            cin >> f;
            if(f) {
                l = mid;
            }
            else {
                r = mid;
            }
        }
        vector<int>nxt;
        for(int j = 0; j < ans.size(); j++) {
            if(l == -1 && j == 0) {
                nxt.push_back(i);
            }
            if(j <= l) {
                nxt.push_back(ans[j]);
            }
            if(j == l) {
                nxt.push_back(i);
            }
            if(l < j) {
                nxt.push_back(ans[j]);
            }
        }
        ans = nxt;
    }
    cout << "!" << endl;
    cout << N-1 << endl;
    for(int i = 0; i <= N; i++) {
        cout << ans[i] << ((i == N)?"\n":" ");
    }
}
0