結果
問題 | No.2085 Directed Complete Graph |
ユーザー | だれ |
提出日時 | 2022-09-23 18:53:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 149 ms / 2,000 ms |
コード長 | 1,011 bytes |
コンパイル時間 | 625 ms |
コンパイル使用メモリ | 70,608 KB |
実行使用メモリ | 25,436 KB |
平均クエリ数 | 2472.00 |
最終ジャッジ日時 | 2024-06-02 00:20:37 |
合計ジャッジ時間 | 3,582 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
25,220 KB |
testcase_01 | AC | 20 ms
25,220 KB |
testcase_02 | AC | 137 ms
24,812 KB |
testcase_03 | AC | 132 ms
25,196 KB |
testcase_04 | AC | 148 ms
24,812 KB |
testcase_05 | AC | 75 ms
25,196 KB |
testcase_06 | AC | 80 ms
24,812 KB |
testcase_07 | AC | 134 ms
24,800 KB |
testcase_08 | AC | 105 ms
25,324 KB |
testcase_09 | AC | 149 ms
24,556 KB |
testcase_10 | AC | 140 ms
25,436 KB |
testcase_11 | AC | 139 ms
24,556 KB |
testcase_12 | AC | 139 ms
24,940 KB |
testcase_13 | AC | 142 ms
24,812 KB |
testcase_14 | AC | 143 ms
25,184 KB |
testcase_15 | AC | 19 ms
25,220 KB |
testcase_16 | AC | 20 ms
25,220 KB |
ソースコード
#include <iostream> using namespace std; int edge[2010][2010]; int tmp[2020]; int arr[2020]; void merge_sort(int idx, int _n) { if (_n == 1) return; auto t = _n / 2; merge_sort(idx, t); merge_sort(idx + t, _n - t); int i = idx, j = idx + t; int cnt = 0; while (i < idx + t && j < idx + _n) { cout << "? " << arr[i] + 1 << " " << arr[j] + 1 << endl; int h; cin >> h; if (h) { tmp[cnt++] = arr[i++]; } else { tmp[cnt++] = arr[j++]; } } while (i < idx + t) { tmp[cnt++] = arr[i++]; } while (j < idx + _n) { tmp[cnt++] = arr[j++]; } for (int k = 0; k < _n; k++) { arr[idx + k] = tmp[k]; } return; } int main(){ int n; cin >> n; for (int i = 0; i < n; i++) arr[i] = i; merge_sort(0, n); cout << "!" << endl; cout << n - 1 << endl; for (int i = 0; i < n; i++) cout << arr[i] + 1 << (i == n - 1? "\n": " "); return 0; }