#include <bits/stdc++.h>
#define FOR(i, x, y) for (int i = x; i < y; i++)
typedef long long ll;
using namespace std;
int cmp(int X, int Y) {
cout << "cmp " << X << ' ' << Y << endl;
cin >> X;
return X;
}
void rev(int X, int Y) {
cout << "reverse " << X << ' ' << Y << endl;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int A, B;
cin >> A >> B;
for (int A_ptr = 0, B_ptr = 0; A_ptr < A; A_ptr++) {
if (cmp(A_ptr + B_ptr + 1, A + B_ptr + 1) == -1) continue;
int l = A + B_ptr + 2, r = A + B;
while (l != r) {
int mid = (l + r) / 2;
if (cmp(A_ptr + B_ptr + 1, mid) == -1) r = mid;
else l = mid + 1;
}
if (A_ptr + 1 != A) rev(A_ptr + B_ptr + 1, A + B_ptr);
if (A + B_ptr + 1 != l - 1) rev(A + B_ptr + 1, l - 1);
rev(A_ptr + B_ptr + 1, l - 1);
B_ptr = l - A;
}
cout << "end" << endl;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
384 KB |
Incorrect |
2 |
Execution timed out |
3071 ms |
384 KB |
Time limit exceeded |
3 |
Execution timed out |
3092 ms |
384 KB |
Time limit exceeded |
4 |
Execution timed out |
3071 ms |
384 KB |
Time limit exceeded |
5 |
Execution timed out |
3082 ms |
384 KB |
Time limit exceeded |
6 |
Incorrect |
28 ms |
384 KB |
Incorrect |
7 |
Execution timed out |
3047 ms |
384 KB |
Time limit exceeded |
8 |
Incorrect |
103 ms |
384 KB |
Incorrect |
9 |
Incorrect |
106 ms |
384 KB |
Incorrect |
10 |
Incorrect |
86 ms |
384 KB |
Incorrect |