結果

問題 No.2124 Guess the Permutation
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-07 14:32:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,264 bytes
コンパイル時間 2,322 ms
コンパイル使用メモリ 208,652 KB
実行使用メモリ 25,604 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-05-07 14:32:42
合計ジャッジ時間 3,640 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}
bool debug = true;
int n;
vector<int> p, cum;
int cnt = 0;
int query(int l, int r) {
    cout << "? " << l << " " << r << endl;
    cnt++;
    if (debug) {
        return cum[r] - cum[l - 1];
    } else {
        int res;
        cin >> res;
        return res;
    }
}
void answer(vector<int> &a) {
    cout << "! ";
    for (int i = 0; i < a.size(); i++) {
        cout << a[i] << " ";
    }
    cout << endl;
    if (debug) {
        assert(a == p);
        assert(cnt < n);
    }
}
int main() {
    fast_io();
    cin >> n;
    if (debug) {
        p.resize(n);
        iota(p.begin(), p.end(), 1);
        shuffle(p.begin(), p.end(), mt19937{random_device{}()});
        cum.resize(n + 1);
        for (int i = 1; i <= n; i++) {
            cum[i] = cum[i - 1] + p[i - 1];
        }
    }
    vector<int> a(n);
    vector<bool> vis(n + 1);
    a[0] = n * (n + 1) / 2 - query(2, n);
    vis[a[0]] = true;
    for (int i = 1; i < n - 1; i++) {
        a[i] = query(i, i + 1) - a[i - 1];
        vis[a[i]] = true;
    }
    for (int i = 1; i <= n; i++) {
        if (!vis[i]) {
            a[n - 1] = i;
        }
    }
    answer(a);
}
0