結果
問題 | No.513 宝探し2 |
ユーザー | fura |
提出日時 | 2020-05-04 19:15:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 792 bytes |
コンパイル時間 | 2,418 ms |
コンパイル使用メモリ | 201,280 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 96.08 |
最終ジャッジ日時 | 2024-07-17 03:34:23 |
合計ジャッジ時間 | 4,481 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 24 ms
25,220 KB |
testcase_06 | WA | - |
testcase_07 | AC | 26 ms
24,836 KB |
testcase_08 | AC | 24 ms
25,208 KB |
testcase_09 | AC | 25 ms
24,836 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; const int INF=1<<29; int ask(int x,int y){ printf("%d %d\n",x,y); fflush(stdout); int res; scanf("%d",&res); if(res==0) exit(0); return res; } int main(){ int x0,y0; int lo=0,hi=1e5; while(hi-lo>2){ int mi1=(2*lo+hi)/3,mi2=(lo+2*hi)/3; if(ask(mi1,0)<ask(mi2,0)) hi=mi2; else lo=mi1; } int mn=INF,i_mn; for(int i=lo;i<=hi;i++){ int tmp=ask(i,0); if(tmp<mn) mn=tmp, i_mn=i; } x0=mn; lo=0; hi=1e5; while(hi-lo>2){ int mi1=(2*lo+hi)/3,mi2=(lo+2*hi)/3; if(ask(x0,mi1)<ask(x0,mi2)) hi=mi2; else lo=mi1; } mn=INF; for(int i=lo;i<=hi;i++){ int tmp=ask(x0,i); if(tmp<mn) mn=tmp, i_mn=i; } y0=mn; ask(x0,y0); return 0; }