結果
問題 | No.850 企業コンテスト2位 |
ユーザー | ninja |
提出日時 | 2019-07-05 23:00:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,208 bytes |
コンパイル時間 | 2,139 ms |
コンパイル使用メモリ | 175,896 KB |
実行使用メモリ | 47,364 KB |
平均クエリ数 | 0.18 |
最終ジャッジ日時 | 2024-07-16 17:30:40 |
合計ジャッジ時間 | 6,252 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using vi = vector<int>; using vll = vector<ll>; using vvi = vector<vector<int>>; using vvl = vector<vector<ll>>; vector<vector<int>> p; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector<int> v(n); p.resize(n); for (int i = 0; i < n; i++) v[i] = i + 1; while (v.size() > 1) { vector<int> w; if (v.size() % 2 == 1) w.push_back(v[v.size() - 1]); for (int i = 0; i < v.size(); i += 2) { cout << "? " << v[i] << " " << v[i + 1] << endl; int x; cin >> x; p[v[i] - 1].push_back(v[i + 1] - 1); p[v[i + 1] - 1].push_back(v[i] - 1); w.push_back(x); } v = w; } int fst = v[0]; v.clear(); for (auto &i : p[fst - 1]) v.push_back(i + 1); while (v.size() > 1) { vector<int> w; if (v.size() % 2 == 1) w.push_back(v[v.size() - 1]); for (int i = 0; i < v.size(); i += 2) { cout << "? " << v[i] << " " << v[i + 1] << endl; int x; cin >> x; p[v[i] - 1].push_back(v[i + 1] - 1); p[v[i + 1] - 1].push_back(v[i] - 1); w.push_back(x); } v = w; } cout << v[0] << endl; return 0; }