Submission #825361

# Submission time Handle Problem Language Result Execution time Memory
825361 2023-08-14T18:37:33 Z Darren0724 CONSUL (info1cup19_consul) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;
mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());
/*int kth(int p){
    cout<<"kth "<<p<<endl;
    int ans;cin>>ans;return ans;
}
int cnt(int p){
    cout<<"cnt "<<p<<endl;
    int ans;cin>>ans;return ans;
}*/
void say_answer(int k){}
void solve(int n){
    int times=0;
    while(times<25){
        int p=rnd()%n+1;
        int t=kth(p);
        if(cnt(t)>n/3){
            say_answer(t);
            return;
        }
    }
    say_answer(-1);
}

Compilation message

consul.cpp: In function 'void solve(int)':
consul.cpp:17:15: error: 'kth' was not declared in this scope
   17 |         int t=kth(p);
      |               ^~~
consul.cpp:18:12: error: 'cnt' was not declared in this scope; did you mean 'int'?
   18 |         if(cnt(t)>n/3){
      |            ^~~
      |            int