結果

問題 No.2577 Simple Permutation Guess
ユーザー fdironia
提出日時 2023-12-06 01:43:23
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 2,381 bytes
コンパイル時間 1,010 ms
コンパイル使用メモリ 88,188 KB
実行使用メモリ 25,476 KB
平均クエリ数 248.84
最終ジャッジ日時 2024-09-27 00:56:48
合計ジャッジ時間 14,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 111
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>

using namespace std;

using ll = long long;

constexpr int L = 402;
constexpr int LGN = 9;

struct BI {
    ll a[L];

    BI(int x);
};

BI& operator*=(BI &a, int b) {
    int c = 0;
    for (int i = 1; i < L; i++) {
        int t = 1ll * a.a[i] * b + c;
        a.a[i] = t % i;
        c = t / i;
    }
    return a;
}

BI::BI(int x = 0) {
    fill(a, a + L, 0);
    a[1] = 1;
    *this *= x;
}

BI operator+(const BI &a, const BI &b) {
    BI c = 0;
    for (int i = 1; i < L; i++) {
        c.a[i] = a.a[i] + b.a[i];
    }
    for (int i = 1; i < L - 1; i++) {
        if (c.a[i] >= i) {
            c.a[i+1]++;
            c.a[i] -= i;
        }
    }
    return c;
}

BI div2(const BI &a) {
    BI b;
    int q = 0;
    for (int i = L - 1; i >= 1; i--) {
        q = q * i + a.a[i];
        b.a[i] = q / 2;
        q %= 2;
    }
    return b;
}

bool operator>(const BI &a, const BI &b) {
    for (int i = L - 1; i >= 1; i--) {
        if (a.a[i] != b.a[i]) {
            return a.a[i] > b.a[i];
        }
    }
    return false;
}

void add(int bit[], int n, int x, int a) {
    for (; x <= n; x += x & -x) {
        bit[x] += a;
    }
}

int qry(int bit[], int n, int v) {
    int x = 0, cur = 0;
    for (int i = LGN - 1; i >= 0; i--) {
        if (x + (1 << i) <= n) {
            if (cur + bit[x+(1<<i)] <= v) {
                cur += bit[x+(1<<i)];
                x += 1 << i;
            }
        }
    }
    return x + 1;
}

void find_perm(BI a, int n, int p[]) {
    int bit[n+1];
    fill(bit, bit + n + 1, 0);
    for (int i = 1; i <= n; i++) {
        add(bit, n, i, 1);
    }

    for (int i = 0; i < n; i++) {
        p[i] = qry(bit, n, a.a[n-i]);
        add(bit, n, p[i], -1);
    }
}

int main() {
    int n;
    cin >> n;

    BI l = 0, r = 0;
    r.a[n+1] = 1;

    BI one = 1;
    while (r > l + one) {
        BI mid = div2(l + r);

        int q[n];
        find_perm(mid, n, q);

        cout << "?";
        for (int i = 0; i < n; i++) {
            cout << " " << q[i];
        }
        cout << endl;

        int res;
        cin >> res;

        if (res == 1) {
            l = mid;
        } else {
            r = mid;
        }
    }

    int ans[n];
    find_perm(l, n, ans);

    cout << "!";
    for (int i = 0; i < n; i++) {
        cout << " " << ans[i];
    }
    cout << endl;

    return 0;
}
0