結果
問題 | No.850 企業コンテスト2位 |
ユーザー | pekempey |
提出日時 | 2019-07-05 23:02:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,192 bytes |
コンパイル時間 | 1,806 ms |
コンパイル使用メモリ | 170,180 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 252.57 |
最終ジャッジ日時 | 2024-07-16 17:31:47 |
合計ジャッジ時間 | 12,857 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
25,220 KB |
testcase_01 | AC | 29 ms
25,220 KB |
testcase_02 | AC | 26 ms
25,220 KB |
testcase_03 | AC | 25 ms
25,220 KB |
testcase_04 | AC | 26 ms
25,220 KB |
testcase_05 | AC | 25 ms
24,836 KB |
testcase_06 | AC | 26 ms
25,208 KB |
testcase_07 | AC | 29 ms
24,964 KB |
testcase_08 | AC | 31 ms
25,220 KB |
testcase_09 | AC | 32 ms
24,964 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 27 ms
25,068 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); i++) #define repr(i, n) for (int i = (n) - 1; i >= 0; i--) using namespace std; using ll = long long; int cnt; #ifdef DEBUG int a[300]; bool lt(int x, int y) { cnt++; return a[x] > a[y]; } #else bool lt(int x, int y) { cnt++; cout << "? " << x+1 << ' ' << y+1 << endl; int res; cin >> res; return res == y+1 ? 1 : 0; } #endif int main() { // cin.tie(nullptr); // ios::sync_with_stdio(false); #ifdef DEBUG rep(i, 300) a[i] = i; int n = 300; #else int n; cin >> n; #endif vector<int> ord(n); rep(i, n) ord[i] = i; mt19937 mt(time(NULL)); for (int i = 0; i < n; i++) { int r = uniform_int_distribution<int>(0, i)(mt); swap(ord[i], ord[r]); } int first, second; if (lt(ord[0], ord[1])) { first = ord[1]; second = ord[0]; } else { first = ord[0]; second = ord[1]; } for (int i = 2; i < n; i++) { if (lt(ord[i], second)) { } else if (lt(ord[i], first)) { second = ord[i]; } else { second = first; first = ord[i]; } } assert(n <= 250); assert(cnt <= 344); cout << "! " << second+1 << endl; cerr << cnt << endl; }