Submission #536588

# Submission time Handle Problem Language Result Execution time Memory
536588 2022-03-13T14:39:41 Z Majid CONSUL (info1cup19_consul) C++17
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>
#include<grader.h>
using namespace std;
 
//Types
using ll = long long;
using db = double;
 
//Vectors
#define pb push_back
#define sz(vec) ((ll)vec.size())
#define all(vec) vec.begin(), vec.end()
 
//things
#define f first
#define s second
const int SMALLINF = 1e9 + 7;
const ll BIGINF = ((ll)1e18) + 7;
#define Speeed ios::sync_with_stdio(0);cin.tie(NULL); cout.tie(NULL);
// Speeed
void solve(ll n){
	
    for(ll i = 0; i <= 50; i++){
        
        ll rndm = (rand()%n) + 1;
        ll val = kth(rndm);
        
        if(cnt(val) > n/3){
            
            say_answer(val);
            return;
        }
    }
    
    say_answer(-1);
}

Compilation message

/usr/bin/ld: /tmp/ccHeiFe5.o: in function `main':
grader.cpp:(.text.startup+0xa8): undefined reference to `solve(int)'
collect2: error: ld returned 1 exit status