結果

問題 No.2496 LCM between Permutations
ユーザー pmankiraipmankirai
提出日時 2023-10-06 23:19:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
QLE  
実行時間 -
コード長 2,309 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 182,160 KB
実行使用メモリ 25,604 KB
平均クエリ数 958.72
最終ジャッジ日時 2024-07-26 17:03:54
合計ジャッジ時間 5,207 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,196 KB
testcase_01 AC 23 ms
25,220 KB
testcase_02 AC 23 ms
24,836 KB
testcase_03 QLE -
testcase_04 QLE -
testcase_05 QLE -
testcase_06 QLE -
testcase_07 QLE -
testcase_08 QLE -
testcase_09 QLE -
testcase_10 QLE -
testcase_11 QLE -
testcase_12 QLE -
testcase_13 AC 24 ms
24,836 KB
testcase_14 QLE -
testcase_15 QLE -
testcase_16 QLE -
testcase_17 QLE -
testcase_18 QLE -
testcase_19 QLE -
testcase_20 QLE -
testcase_21 QLE -
testcase_22 QLE -
testcase_23 QLE -
testcase_24 AC 90 ms
24,964 KB
testcase_25 QLE -
testcase_26 QLE -
testcase_27 QLE -
testcase_28 QLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// #include <atcoder/all>
using namespace std;
// using namespace atcoder;
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rep1(i, n) for (int i = 1; i <= (n); i++)
#define rrep(i, n) for (int i = n - 1; i >= 0; i--)
#define rrep1(i, n) for (int i = n; i >= 1; i--)
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define eb emplace_back
#define fi first
#define se second
#define sz(x) (int)(x).size()
template <class T> using V = vector<T>;
template <class T> using VV = V<V<T>>;
typedef long long int ll;
// typedef modint998244353 mint;

void speedUpIO() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
}

template <class T> bool chmax(T &a, const T &b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}
template <class T> bool chmin(T &a, const T &b) {
    if (b < a) {
        a = b;
        return true;
    }
    return false;
}
/*--------------------------------------------------*/
typedef pair<int, int> P;

const int INF = 1e9;
const ll LINF = 1e18;
const int MAX = 1e5;

void solve() {
    int n;
    cin >> n;
    V<int> a(n), b(n);
    set<int> c;
    rep(i, n) c.insert(i);
    int i = 0;
    while (sz(c) > 1) {
        assert(i < n);
        int nc = sz(c);
        map<int, int> x;
        int mn = n;
        for (int cj : c) {
            cout << "? " << i + 1 << " " << cj + 1 << endl;
            cin >> x[cj];
            chmin(mn, x[cj]);
        }
        set<int> cc;
        for (int cj : c) {
            if (x[cj] == mn) cc.insert(cj);
        }
        c = cc;
        i++;
    }
    assert(sz(c) == 1);
    rep(ii, n) {
        cout << "? " << ii + 1 << " " << *c.begin() + 1 << endl;
        int x;
        cin >> x;
        a[ii] = x;
        if (x == 1) i = ii;
    }
    rep(j, n) {
        cout << "? " << i + 1 << " " << j + 1 << endl;
        int x;
        cin >> x;
        b[j] = x;
    }
    cout << "! ";
    rep(i, n) cout << a[i] << " ";
    rep(i, n) cout << b[i] << " ";
    cout << endl;
}

int main() {
    speedUpIO();
    int t = 1;
    // cin >> t;
    while (t--) {
        solve();
        // cout << solve() << "\n";
        // cout << (solve() ? "Yes" : "No") << "\n";
        // cout << fixed << setprecision(15) << solve() << "\n";
    }
    return 0;
}
0