# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
478166 | FatihSolak | Nizovi (COI14_nizovi) | C++17 | 199 ms | 288 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int a,b;
int ask(int x,int y){
cout << "cmp " << x << " " << y << endl;
int ret;
cin >> ret;
return ret;
}
int tot = 0;
void rev(int l,int r){
if(l >= r)return;
tot += r - l +1;
while(!(tot <= 3000000));
while(!(r <= a+b && l > 0 && l <= r));
cout << "reverse " << l << " " << r << endl;
}
int main(){
cin >> a >> b;
int pos = 1;
for(int i=1;i<=a && pos < a + b;i++){
int l = pos + a - i + 1, r = a+b;
int cnt = -l;
if(ask(pos,l) != 1){
pos++;
continue;
}
while(l < r){
int m = (l + r + 1)/2;
if(ask(m,pos) == 1){
r = m-1;
}
else l = m;
}
cnt += l;
rev(pos,l);
rev(pos,pos+cnt);
rev(pos+cnt+1,l);
pos += cnt + 2;
}
cout << "end" << endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |