結果
問題 | No.2085 Directed Complete Graph |
ユーザー | 259_Momone |
提出日時 | 2022-09-27 02:00:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 718 bytes |
コンパイル時間 | 2,414 ms |
コンパイル使用メモリ | 264,004 KB |
実行使用メモリ | 25,580 KB |
平均クエリ数 | 10.12 |
最終ジャッジ日時 | 2024-06-02 00:39:55 |
合計ジャッジ時間 | 5,516 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
#include <bits/extc++.h> int main() { using namespace std; unsigned long N; cin >> N; vector<unsigned long> A{0, 1, 10000}; const auto query{[](auto i, auto j) -> bool { cout << "? " << i << " " << j << endl; unsigned long t; cin >> t; return t; }}; for(unsigned long i{2}; i <= N; ++i){ unsigned long l{0}, r{size(A) + 1}; while(l + 1 < r){ auto m{(l + r) / 2}; (query(A[m], i) ? l : r) = m; } A.insert(begin(A) + l + 1, i); } A.pop_back(); A.erase(begin(A)); cout << "!" << endl; cout << N - 1 << endl; for(const auto a : A)cout << a << " "; cout << endl; return 0; }