結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | kmjp |
提出日時 | 2017-11-10 22:33:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 121 ms / 2,000 ms |
コード長 | 1,958 bytes |
コンパイル時間 | 1,451 ms |
コンパイル使用メモリ | 161,464 KB |
実行使用メモリ | 25,488 KB |
平均クエリ数 | 70.80 |
最終ジャッジ日時 | 2024-07-16 14:25:59 |
合計ジャッジ時間 | 5,097 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 116 ms
25,476 KB |
testcase_01 | AC | 113 ms
25,220 KB |
testcase_02 | AC | 112 ms
24,580 KB |
testcase_03 | AC | 115 ms
24,964 KB |
testcase_04 | AC | 118 ms
24,964 KB |
testcase_05 | AC | 114 ms
24,580 KB |
testcase_06 | AC | 114 ms
25,220 KB |
testcase_07 | AC | 114 ms
24,580 KB |
testcase_08 | AC | 115 ms
24,580 KB |
testcase_09 | AC | 114 ms
25,232 KB |
testcase_10 | AC | 116 ms
24,976 KB |
testcase_11 | AC | 117 ms
24,976 KB |
testcase_12 | AC | 118 ms
24,592 KB |
testcase_13 | AC | 115 ms
24,848 KB |
testcase_14 | AC | 115 ms
24,848 KB |
testcase_15 | AC | 116 ms
24,592 KB |
testcase_16 | AC | 121 ms
24,848 KB |
testcase_17 | AC | 114 ms
24,592 KB |
testcase_18 | AC | 116 ms
24,976 KB |
testcase_19 | AC | 118 ms
25,488 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- int RX=-101,RY,RZ; // 質問クエリ ll ask(int x, int y, int z) { ll d; cout << "?" << " " << x << " " << y << " " << z << endl; if(RX!=-101) { return abs(x-RX)+abs(y-RY)+abs(z-RZ); } cin >> d; return d; } // 回答クエリ void answer(int x, int y, int z) { cout << "!" << " " << x << " " << y << " " << z << endl; exit(0); } void solve() { int i,j,k,l,r,x,y; string s; //cin>>RX>>RY>>RZ; int X=0,Y=0,Z=0; int L,R; L=-100; R=100; ll mi; while(L+2<R) { int M1=(2*L+R)/3; int M2=(L+R*2)/3; int V1=ask(M1,Y,Z); int V2=ask(M2,Y,Z); if(V1<V2) R=M2; if(V1>V2) L=M1; if(V1==V2) L=M1,R=M2; } mi=ask(L,Y,Z); X=L; for(i=L+1;i<=R;i++) { ll r=ask(i,Y,Z); if(r<mi) mi=r, X=i; } L=-100; R=100; while(L+2<R) { int M1=(2*L+R)/3; int M2=(L+R*2)/3; int V1=ask(X,M1,Z); int V2=ask(X,M2,Z); if(V1<V2) R=M2; if(V1>V2) L=M1; if(V1==V2) L=M1,R=M2; } mi=ask(X,L,Z); Y=L; for(i=L+1;i<=R;i++) { ll r=ask(X,i,Z); if(r<mi) mi=r, Y=i; } L=-100; R=100; while(L+2<R) { int M1=(2*L+R)/3; int M2=(L+R*2)/3; int V1=ask(X,Y,M1); int V2=ask(X,Y,M2); if(V1<V2) R=M2; if(V1>V2) L=M1; if(V1==V2) L=M1,R=M2; } mi=ask(X,Y,L); Z=L; for(i=L+1;i<=R;i++) { ll r=ask(X,Y,i); if(r<mi) mi=r, Z=i; } answer(X,Y,Z); } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }