Submission #736311

# Submission time Handle Problem Language Result Execution time Memory
736311 2023-05-05T12:32:50 Z beaconmc Nizovi (COI14_nizovi) C++14
10 / 100
249 ms 288 KB
#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>

typedef long long ll;
using namespace std;
//using namespace __gnu_pbds;

#define FOR(i, x, y) for(ll i=x; i<y; i++)
#define FORNEG(i, x, y) for(ll i=x; i>y; i--)
//#define ordered_set tree<ll, null_type,less_equal<ll>, rb_tree_tag,tree_order_statistics_node_update>
#define fast() ios_base::sync_with_stdio(false);cin.tie(NULL)


int main(){
  ll a,b;
  cin >> a >> b;

  ll stuff[a];
  FOR(i,0,a){
    ll lo = a+1;
    ll hi = a+b+1;
    cout << "cmp " << i+1 << " " << a+1 << endl;
    ll resp; cin >> resp;
    if (resp == -1){
      stuff[i] = -1;
      continue;
    }
    while (lo < hi){
      ll mid = (hi + lo) / 2;
      cout << "cmp " << i+1 << " " << mid << endl;
      ll resp;
      cin >> resp;
      if (resp<=0){
        hi = mid;
      }else{
        lo = mid+1;
      }
    }
    stuff[i] = lo-1;
  }
  ll cur = a;
  ll pos = 1;

  FOR(i,0,a){
    if (stuff[i] == -1){
      pos += 1;
      cur -= 1;
      continue;
    }
    cout << "reverse " << pos << " " << stuff[i] << endl;
    cout << "reverse " << pos << " " << stuff[i]-cur << endl;
    cout << "reverse " << stuff[i]-cur+1 << " "<< stuff[i]<< endl;
    cur -= 1;
    pos = stuff[i]-cur+1;
  }

  cout << "end" << endl;




}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 208 KB Integer 0 violates the range [1, 30]
2 Incorrect 4 ms 208 KB x > y in reverse command
3 Incorrect 2 ms 208 KB x > y in reverse command
4 Runtime error 35 ms 208 KB Execution killed with signal 13
5 Runtime error 44 ms 280 KB Execution killed with signal 13
6 Runtime error 50 ms 280 KB Execution killed with signal 13
7 Runtime error 149 ms 288 KB Execution killed with signal 13
8 Incorrect 188 ms 284 KB x > y in reverse command
9 Correct 219 ms 280 KB Output is correct
10 Runtime error 249 ms 280 KB Execution killed with signal 13