結果

問題 No.2124 Guess the Permutation
ユーザー ruthenruthen
提出日時 2022-11-18 21:35:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 828 bytes
コンパイル時間 1,882 ms
コンパイル使用メモリ 203,124 KB
実行使用メモリ 25,220 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-09-20 01:59:35
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,556 KB
testcase_01 AC 21 ms
24,836 KB
testcase_02 AC 20 ms
25,220 KB
testcase_03 AC 21 ms
24,836 KB
testcase_04 AC 22 ms
24,952 KB
testcase_05 AC 23 ms
24,836 KB
testcase_06 AC 38 ms
24,964 KB
testcase_07 AC 51 ms
25,220 KB
testcase_08 AC 51 ms
25,220 KB
testcase_09 AC 50 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#ifdef _RUTHEN
#include <debug.hpp>
#else
#define show(...) true
#endif

using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
template <class T> using V = vector<T>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N;
    cin >> N;
    V<int> P(N);
    int S = N * (N + 1) / 2;
    for (int i = 2; i < N; i++) {
        cout << "? " << i << " " << N << endl;
        int C;
        cin >> C;
        P[i - 2] = S - C;
        S = C;
    }
    cout << "? 1 " << N - 1 << endl;
    int C;
    cin >> C;
    int SS = accumulate(P.begin(), P.begin() + N - 2, 0);
    P[N - 2] = C - SS;
    P[N - 1] = N * (N + 1) / 2 - accumulate(P.begin(), P.begin() + N - 1, 0);
    cout << "! ";
    rep(i, N) cout << P[i] << " \n"[i == N - 1];
    return 0;
}
0