結果
問題 | No.2124 Guess the Permutation |
ユーザー | milanis48663220 |
提出日時 | 2022-11-18 21:27:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 53 ms / 2,000 ms |
コード長 | 1,896 bytes |
コンパイル時間 | 1,275 ms |
コンパイル使用メモリ | 122,348 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 374.60 |
最終ジャッジ日時 | 2024-09-20 01:52:38 |
合計ジャッジ時間 | 2,485 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
24,812 KB |
testcase_01 | AC | 21 ms
24,452 KB |
testcase_02 | AC | 21 ms
24,836 KB |
testcase_03 | AC | 24 ms
24,836 KB |
testcase_04 | AC | 23 ms
24,964 KB |
testcase_05 | AC | 24 ms
24,836 KB |
testcase_06 | AC | 38 ms
24,836 KB |
testcase_07 | AC | 53 ms
25,220 KB |
testcase_08 | AC | 52 ms
24,836 KB |
testcase_09 | AC | 52 ms
24,836 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n; cin >> n; auto ask = [&](int l, int r){ cout << "? " << l+1 << ' ' << r+1 << endl; int ans; cin >> ans; return ans; }; vector<int> ans(n); vector<int> sum(n); for(int r = 1; r < n-1; r++){ sum[r] = ask(0, r); } sum[n-1] = (n*(n+1))/2; for(int i = 2; i < n; i++){ ans[i] = sum[i]-sum[i-1]; } ans[1] = ask(1, 2)-ans[2]; vector<bool> used(n+1); for(int i = 1; i < n; i++){ used[ans[i]] = true; } for(int x = 1; x <= n; x++){ if(!used[x]) ans[0] = x; } cout << "! "; print_vector(ans); }