結果

問題 No.2085 Directed Complete Graph
ユーザー 259_Momone259_Momone
提出日時 2022-09-27 01:07:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 522 bytes
コンパイル時間 2,792 ms
コンパイル使用メモリ 271,308 KB
実行使用メモリ 25,680 KB
平均クエリ数 2481.53
最終ジャッジ日時 2024-06-02 00:37:44
合計ジャッジ時間 5,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
24,836 KB
testcase_01 AC 20 ms
25,220 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 69 ms
25,196 KB
testcase_06 AC 73 ms
24,940 KB
testcase_07 AC 127 ms
25,196 KB
testcase_08 AC 99 ms
24,940 KB
testcase_09 AC 127 ms
24,812 KB
testcase_10 AC 130 ms
24,556 KB
testcase_11 AC 134 ms
24,556 KB
testcase_12 AC 134 ms
25,196 KB
testcase_13 AC 130 ms
24,940 KB
testcase_14 AC 131 ms
25,196 KB
testcase_15 AC 20 ms
25,220 KB
testcase_16 AC 20 ms
24,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>

int main() {
    using namespace std;
    unsigned long N;
    cin >> N;
    vector<unsigned long> A(N);
    iota(begin(A), end(A), 1);
    shuffle(begin(A), end(A), mt19937_64{random_device{}()});
    stable_sort(begin(A), end(A), [](auto i, auto j){
        cout << "? " << i << " " << j << endl;
        unsigned long x;
        cin >> x;
        return x;
    });
    cout << "!" << endl;
    cout << N - 1 << endl;
    for(const auto a : A)cout << a << " ";
    cout << endl;
    return 0;
}
0