이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pll pair<ll,ll>
#define pii pair<int,int>
#define fs first
#define sc second
#define tlll tuple<ll,ll,ll>
#define int ll
const int mxn = 1e6+10;
int N,M,K;
int dp[mxn];
int C = 0;
int ask(int x,int y = 1,int z = 1){
cout<<"? "<<x<<' '<<y<<' '<<z<<endl;
C++;
int re;
cin>>re;
if(re == -1)exit(0);
return re;
}
main(){
cin>>N>>M>>K;
int l = 1,r = N;
while(r-l>1){
int mid = (l+r)>>1;
if(ask(mid)>=ask(mid+1))r = mid;
else l = mid;
}
if(l == r)cout<<"! "<<l<<" 1 1"<<endl;
else if(ask(l)<=ask(r))cout<<"! "<<r<<" 1 1"<<endl;
else cout<<"! "<<l<<" 1 1"<<endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
worm.cpp:27:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
27 | main(){
| ^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |