結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | mint6421 |
提出日時 | 2019-12-30 23:33:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 112 ms / 2,000 ms |
コード長 | 1,791 bytes |
コンパイル時間 | 1,648 ms |
コンパイル使用メモリ | 168,080 KB |
実行使用メモリ | 25,232 KB |
平均クエリ数 | 31.60 |
最終ジャッジ日時 | 2024-07-16 19:10:26 |
合計ジャッジ時間 | 5,785 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 112 ms
25,220 KB |
testcase_01 | AC | 108 ms
24,964 KB |
testcase_02 | AC | 107 ms
24,836 KB |
testcase_03 | AC | 110 ms
25,208 KB |
testcase_04 | AC | 109 ms
24,836 KB |
testcase_05 | AC | 107 ms
24,964 KB |
testcase_06 | AC | 108 ms
24,964 KB |
testcase_07 | AC | 108 ms
24,836 KB |
testcase_08 | AC | 112 ms
24,836 KB |
testcase_09 | AC | 110 ms
24,848 KB |
testcase_10 | AC | 108 ms
24,848 KB |
testcase_11 | AC | 110 ms
25,232 KB |
testcase_12 | AC | 110 ms
25,232 KB |
testcase_13 | AC | 109 ms
24,848 KB |
testcase_14 | AC | 112 ms
24,848 KB |
testcase_15 | AC | 111 ms
25,232 KB |
testcase_16 | AC | 112 ms
24,848 KB |
testcase_17 | AC | 111 ms
24,976 KB |
testcase_18 | AC | 112 ms
24,988 KB |
testcase_19 | AC | 111 ms
24,848 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define inf INT_MAX #define INF LLONG_MAX #define ll long long #define ull unsigned long long #define M (int)(1e9+7) #define P pair<int,int> #define FOR(i,m,n) for(int i=(int)m;i<(int)n;i++) #define RFOR(i,m,n) for(int i=(int)m;i>=(int)n;i--) #define rep(i,n) FOR(i,0,n) #define rrep(i,n) RFOR(i,n,0) #define all(a) a.begin(),a.end() const int vx[4] = {0,1,0,-1}; const int vy[4] = {1,0,-1,0}; #define F first #define S second #define PB push_back #define EB emplace_back #define int ll #define vi vector<int> #define IP pair<int,P> #define PI pair<P,int> #define PP pair<P,P> #define Yes(f){cout<<(f?"Yes":"No")<<endl;} #define YES(f){cout<<(f?"YES":"NO")<<endl;} signed main(){ cin.tie(0); ios::sync_with_stdio(false); cout<<fixed<<setprecision(20); int xl=-150,xr=150; int dl,dr; cout<<"? -150 0 0"<<endl; cin>>dl; cout<<"? 150 0 0"<<endl; cin>>dr; while(xr-xl>1){ int x=(xl+xr)/2; cout<<"? "<<x<<" 0 0"<<endl; int d; cin>>d; if(dl>dr){ dl=d; xl=x; } else{ dr=d; xr=x; } } int x=(dl>dr?xr:xl); int yl=-150,yr=150; cout<<"? 0 -150 0"<<endl; cin>>dl; cout<<"? 0 150 0"<<endl; cin>>dr; while(yr-yl>1){ int y=(yl+yr)/2; cout<<"? 0 "<<y<<" 0"<<endl; int d; cin>>d; if(dl>dr){ dl=d; yl=y; } else{ dr=d; yr=y; } } int y=(dl>dr?yr:yl); int zl=-150,zr=150; cout<<"? 0 0 -150"<<endl; cin>>dl; cout<<"? 0 0 150"<<endl; cin>>dr; while(zr-zl>1){ int z=(zl+zr)/2; cout<<"? 0 0 "<<z<<endl; int d; cin>>d; if(dl>dr){ dl=d; zl=z; } else{ dr=d; zr=z; } } int z=(dl>dr?zr:zl); cout<<"! "<<x<<' '<<y<<' '<<z<<endl; }