Submission #895232

#TimeUsernameProblemLanguageResultExecution timeMemory
895232IrateHotter Colder (IOI10_hottercolder)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); int Guess(int n); // int lastG = -1, X; // int cnt = 0; // int Guess(int n){ // cnt++; // // cout << "GUESS: " << lastG << ", " << n << '\n'; // if(lastG == -1 || abs(X - lastG) == abs(X - n)){ // lastG = n; // return 0; // } // if(abs(X - lastG) > abs(X - n)){ // lastG = n; // return 1; // } // lastG = n; // return -1; // } int HC(int n){ int l = 1, r = n, last = 1; Guess(1); while(l < r){ int mid = (l + r) >> 1; // cout << l << ", " << r << ": " << last << '\n'; if(last == l){ int num = Guess(r); last = r; // cout << "NUM: " << num << '\n'; if(num == -1){ if((l + r) % 2)r = mid; else r = mid - 1; int R = rng() % 2; if(R == 0){ Guess(l); last = l; } else{ Guess(r); last = r; } } else if(num == 1){ l = mid + 1; } else{ return (l + r) >> 1; } } else{ int num = Guess(l); last = l; // cout << "NUM: " << num << '\n'; if(num == 1){ if((l + r) % 2)r = mid; else r = mid - 1; } else if(num == -1){ l = mid + 1; int R = rng() % 2; if(R == 0){ Guess(r); last = r; } else{ Guess(l); last = l; } } else return (l + r) >> 1; } } return l; } int main(){ // for(int i = 1;i <= 300;++i){ // for(int j = 1;j <= i;++j){ // X = j; // cnt = 0; // lastG = -1; // int found_num = HC(i); // if(found_num != j){ // cout << "Wrong Answer: " << i << ", " << j << '\n'; // cout << "FOUND: " << found_num << '\n'; // break; // } // else if(cnt >= 16){ // cout << i << ", " << j << ": " << cnt << '\n'; // } // } // } }

Compilation message (stderr)

/usr/bin/ld: /tmp/ccRZffjy.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccDjefix.o:hottercolder.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status