結果

問題 No.2085 Directed Complete Graph
ユーザー makichanmakichan
提出日時 2024-10-31 02:59:16
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,325 bytes
コンパイル時間 5,438 ms
コンパイル使用メモリ 313,256 KB
実行使用メモリ 25,452 KB
平均クエリ数 1632.18
最終ジャッジ日時 2024-10-31 02:59:25
合計ジャッジ時間 8,692 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,580 KB
testcase_01 AC 24 ms
25,220 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 54 ms
25,196 KB
testcase_06 AC 54 ms
25,196 KB
testcase_07 AC 97 ms
25,196 KB
testcase_08 AC 72 ms
24,940 KB
testcase_09 AC 92 ms
25,196 KB
testcase_10 AC 93 ms
24,556 KB
testcase_11 AC 97 ms
24,556 KB
testcase_12 AC 95 ms
24,556 KB
testcase_13 AC 104 ms
25,196 KB
testcase_14 AC 96 ms
24,812 KB
testcase_15 AC 24 ms
24,836 KB
testcase_16 AC 24 ms
25,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::static_modint<998244353>;
//using mint = atcoder::static_modint<1000000007>;
using namespace std;
using namespace atcoder;
using ld = long double;
using ll = long long;
#define mp(a,b) make_pair(a,b)
#define rep(i,s,n) for(int i=s; i<n; i++)
const vector<int> dx{1,0,-1,0},dy{0,1,0,-1};

std::random_device seed_gen;
std::mt19937 engine(seed_gen());
int main(){
    int n;cin >> n;
    cout << "? " << 1 << " " << 2 << "\n";
    int t;cin >> t;
    vector<int> a;
    if(t==1)a={1,2};
    else a={2,1};
    vector<int> p;
    rep(i,3,n+1)p.push_back(i);
    shuffle(p.begin(),p.end(),engine);
    for(auto i:p){
        cout << "? " << i << " " << a[0] << "\n";
        cin >> t;
        if(t==1){
            a.insert(a.begin(),i);
            continue;
        }
        cout << "? " << a.back() << " " << i << "\n";
        cin >> t;
        if(t==1){
            a.push_back(i);
            continue;
        }

        int l=0,r=a.size()-1;
        while(r-l>1){
            int mid=(r+l)/2;
            cout << "? " << i << " " << a[mid] << "\n";
            cin >> t;
            if(t==1)r=mid;
            else l=mid;
        }
        a.insert(a.begin()+r,i);
    }
    cout << "!\n";
    cout << n-1 << "\n";
    for(auto x:a)cout << x << " ";
}
0