結果

問題 No.2577 Simple Permutation Guess
ユーザー fdironia
提出日時 2023-12-06 00:06:21
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 3,022 bytes
コンパイル時間 1,063 ms
コンパイル使用メモリ 89,344 KB
実行使用メモリ 40,116 KB
平均クエリ数 0.07
最終ジャッジ日時 2024-09-27 00:38:25
合計ジャッジ時間 4,727 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other TLE * 1 -- * 110
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>

using namespace std;

constexpr int L = 871;
constexpr int LGN = 9;

struct BI {
    int a[L];

    BI(int x = 0) {
        fill(a, a + L, 0);
        for (int i = 0; x; i++, x /= 10) {
            a[i] = x % 10;
        }
    }
};

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

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

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

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

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

bool operator>(const BI &a, const BI &b) {
    for (int i = L - 1; i >= 0; 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[]) {
    for (int i = 0; i < n; i++) {
        p[i] = a % (i + 1);
        a /= i + 1;
    }

    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 = n - 1; i >= 0; i--) {
        p[i] = qry(bit, n, p[i]);
        add(bit, n, p[i], -1);
    }

    reverse(p, p + n);
}

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

    BI l = 0, r = 1;
    for (int i = 1; i <= n; i++) {
        r *= i;
    }
    r = r - 1;

    BI one = 1;
    while (r - l > one) {
        BI mid = l + r;
        mid /= 2;

        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