結果
問題 |
No.850 企業コンテスト2位
|
ユーザー |
|
提出日時 | 2019-07-05 22:41:51 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,067 bytes |
コンパイル時間 | 1,669 ms |
コンパイル使用メモリ | 171,024 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 387.14 |
最終ジャッジ日時 | 2024-07-16 17:26:55 |
合計ジャッジ時間 | 7,187 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | AC * 1 WA * 26 |
ソースコード
#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 : 0; } #endif int main() { cin.tie(nullptr); ios::sync_with_stdio(false); #ifdef DEBUG int n = 300; rep(i, 300) a[i] = i; #else int n; cin >> n; #endif vector<int> ord(n); rep(i, n) ord[i] = i; mt19937 mt(time(NULL)); shuffle(ord.begin(), ord.end(), mt); 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]; } } cout << "! " << second+1 << endl; cerr << cnt << endl; }