結果

問題 No.2085 Directed Complete Graph
ユーザー makichanmakichan
提出日時 2024-10-31 02:53:32
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,195 bytes
コンパイル時間 5,580 ms
コンパイル使用メモリ 309,936 KB
実行使用メモリ 25,220 KB
平均クエリ数 1651.88
最終ジャッジ日時 2024-10-31 02:53:42
合計ジャッジ時間 9,267 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,836 KB
testcase_01 AC 23 ms
25,220 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 54 ms
24,556 KB
testcase_06 AC 57 ms
25,196 KB
testcase_07 AC 89 ms
25,180 KB
testcase_08 AC 71 ms
25,196 KB
testcase_09 AC 89 ms
24,556 KB
testcase_10 AC 99 ms
24,556 KB
testcase_11 AC 99 ms
24,800 KB
testcase_12 AC 97 ms
24,812 KB
testcase_13 AC 94 ms
24,940 KB
testcase_14 AC 96 ms
24,812 KB
testcase_15 AC 22 ms
24,964 KB
testcase_16 AC 22 ms
24,836 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++)
#define _GLIBCXX_DEBUG
const vector<int> dx{1,0,-1,0},dy{0,1,0,-1};

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};
    rep(i,3,n+1){
        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