# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
90607 |
2018-12-22T21:05:36 Z |
Milki |
Nizovi (COI14_nizovi) |
C++14 |
|
207 ms |
700 KB |
#include<bits/stdc++.h>
using namespace std;
#define FOR(i, a, b) for(int i = a; i < b; ++i)
#define REP(i, n) FOR(i, 0, n)
#define _ << " " <<
#define sz(x) ((int) x.size())
#define pb(x) push_back(x)
typedef long long ll;
typedef pair<int, int> point;
const int MAXN = 1e3 + 5;
int a, b;
int sol[MAXN];
int cmp(int x, int y){
cout << "cmp" _ x _ y << endl;
fflush(stdout);
int ret; cin >> ret;
return ret;
}
void rev(int x, int y){
if(x == y) return;
cout << "reverse" _ x _ y << endl;
fflush(stdout);
}
int main(){
cin >> a >> b;
REP(i, a){
int lo = a + i + 1, hi = a + b;
if(lo >= hi) continue;
while(lo < hi){
int mid = (lo + hi + 1) >> 1;
int ans = cmp(i + 1, mid);
if(ans <= 0)
hi = mid - 1;
else
lo = mid;
}
sol[i] = lo;
}
int start = 1, len = a + 1;
REP(i, a){
len --;
if(i && sol[i] == sol[i - 1] ) continue;
if(sol[i] == a) continue;
rev(start, sol[i]);
rev(sol[i] - len + 1, sol[i]);
rev(start, sol[i] - len);
start = sol[i] - len + 2;
}
cout << "end";
fflush(stdout);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
420 KB |
Output is correct |
2 |
Incorrect |
4 ms |
420 KB |
Incorrect |
3 |
Incorrect |
3 ms |
420 KB |
Integer 0 violates the range [1, 100] |
4 |
Incorrect |
32 ms |
576 KB |
Incorrect |
5 |
Incorrect |
16 ms |
628 KB |
Incorrect |
6 |
Incorrect |
33 ms |
628 KB |
Integer 0 violates the range [1, 1000] |
7 |
Incorrect |
97 ms |
628 KB |
Incorrect |
8 |
Incorrect |
183 ms |
680 KB |
Incorrect |
9 |
Correct |
195 ms |
700 KB |
Output is correct |
10 |
Incorrect |
207 ms |
700 KB |
Total cost of reverse commands > 3 000 000 |