結果
問題 | No.850 企業コンテスト2位 |
ユーザー | paruki |
提出日時 | 2019-07-10 16:56:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,241 bytes |
コンパイル時間 | 1,642 ms |
コンパイル使用メモリ | 170,608 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 193.79 |
最終ジャッジ日時 | 2024-07-16 17:44:56 |
合計ジャッジ時間 | 11,471 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
24,836 KB |
testcase_01 | AC | 21 ms
24,836 KB |
testcase_02 | AC | 21 ms
25,220 KB |
testcase_03 | AC | 19 ms
25,220 KB |
testcase_04 | AC | 20 ms
24,836 KB |
testcase_05 | WA | - |
testcase_06 | AC | 20 ms
24,580 KB |
testcase_07 | AC | 23 ms
24,836 KB |
testcase_08 | AC | 25 ms
24,836 KB |
testcase_09 | AC | 26 ms
24,836 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 | 20 ms
24,940 KB |
ソースコード
#define _USE_MATH_DEFINES #include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define MT make_tuple #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() #define RT return using ll = long long; using pii = pair<int, int>; using vi = vector<int>; using vll = vector<ll>; int N; int query(int x, int y) { if (y > N)return x; cout << "? " << x << ' ' << y << endl; int res; cin >> res; return res; } vi lost[301]; // (l, r] int f(int l, int r) { if (r - l == 1) { return r; } int m = (l + r) / 2; int x = f(l, m); int y = f(m, r); int res = query(x, y); lost[res].push_back(res^x^y); return res; } void solve() { cin >> N; int n = 1; while (n < N)n *= 2; int champ = f(0, n); int sec = lost[champ][0]; FOR(i, 1, sz(lost[champ])) { sec = query(sec, lost[champ][i]); } cout << "! " << sec << endl; } int main() { solve(); return 0; }