# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
580701 |
2022-06-21T17:03:46 Z |
groshi |
Nizovi (COI14_nizovi) |
C++17 |
|
184 ms |
292 KB |
#include<iostream>
using namespace std;
int main()
{
//cin.tie(0);
//cout.tie(0);
//ios_base::sync_with_stdio(0);
int a,b;
cin>>a>>b;
int pocz_a=1,pocz_b=a+1;
for(int i=1;i<=a && pocz_b<=b;i++)
{
cout<<"cmp "<<pocz_a<<" "<<pocz_b<<"\n";
cout<<flush;
int x;
cin>>x;
if(x==-1)
{
pocz_a++;
continue;
}
int pocz=pocz_b+1,kon=a+b+1,sre,ostd=0;
while(pocz<kon)
{
sre=(pocz+kon)/2;
cout<<"cmp "<<pocz_a<<" "<<sre<<"\n";
cout<<flush;
int x;
cin>>x;
if(x==-1)
kon=sre;
else{
pocz=sre+1;
ostd=sre;
}
}
if(ostd==0)
{
pocz_a++;
continue;
}
if(pocz_a<ostd)
{
//cout<<flush;
cout<<"reverse "<<pocz_a<<" "<<ostd<<"\n";
cout<<flush;
}
int ile=ostd-pocz_b+1;
if(pocz_a<pocz_a+ile-1)
{
//cout<<flush;
cout<<"reverse "<<pocz_a<<" "<<pocz_a+ile-1<<"\n";
cout<<flush;
}
if(pocz_a+ile<ostd)
{
//cout<<flush;
cout<<"reverse "<<pocz_a+ile<<" "<<ostd<<"\n";
cout<<flush;
}
pocz_a+=ile+1;
pocz_b+=ile;
}
cout<<"end\n";
cout<<flush;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
208 KB |
Incorrect |
2 |
Incorrect |
0 ms |
208 KB |
Incorrect |
3 |
Incorrect |
0 ms |
208 KB |
Incorrect |
4 |
Incorrect |
1 ms |
208 KB |
Incorrect |
5 |
Incorrect |
2 ms |
208 KB |
Incorrect |
6 |
Incorrect |
0 ms |
208 KB |
Incorrect |
7 |
Incorrect |
178 ms |
208 KB |
Incorrect |
8 |
Incorrect |
96 ms |
208 KB |
Incorrect |
9 |
Incorrect |
184 ms |
208 KB |
Incorrect |
10 |
Incorrect |
161 ms |
292 KB |
Incorrect |