Submission #1074662

#TimeUsernameProblemLanguageResultExecution timeMemory
1074662DeathIsAweHotter Colder (IOI10_hottercolder)C++17
50 / 100
394 ms8236 KiB
#include "grader.h" #include <iostream> #include <vector> using namespace std; int destroy(int top, int bottom, int previous) { //cout << top << ' ' << bottom << '\n'; if (top - bottom == 0) { return top; } /* } else if (top - bottom == 1) { int sussy; if (previous == -1) { Guess(top); sussy = Guess(bottom); } else if (previous == top) { sussy = Guess(bottom); } else { sussy = -Guess(top); } if (sussy == 1) { ans = bottom; } else { ans = top; } return; } */ int mid = (top + bottom) / 2; int midleft = (bottom + mid) / 2; int midright = (mid + 1 + top) / 2; if (previous == -1) { int midleftans = Guess(midleft), midrightans = Guess(midright); if (midrightans == 0) { return (midleft + midright) / 2; } else if (midrightans == 1) { return destroy(top, mid + 1, -1); } else { return destroy(mid, bottom, -1); } } } int HC(int n){ int ans = destroy(n, 1, -1); return ans; }

Compilation message (stderr)

hottercolder.cpp: In function 'int destroy(int, int, int)':
hottercolder.cpp:34:11: warning: unused variable 'midleftans' [-Wunused-variable]
   34 |       int midleftans = Guess(midleft), midrightans = Guess(midright);
      |           ^~~~~~~~~~
hottercolder.cpp:43:1: warning: control reaches end of non-void function [-Wreturn-type]
   43 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...