Submission #204945

#TimeUsernameProblemLanguageResultExecution timeMemory
204945jasony123123Hotter Colder (IOI10_hottercolder)C++11
50 / 100
708 ms21112 KiB
#include "grader.h" #include <bits/stdc++.h> //#include <ext/pb_ds/tree_policy.hpp> //#include <ext/pb_ds/assoc_container.hpp> using namespace std; //using namespace __gnu_pbds; #define FOR(i,start,end) for(int i=start;i<(int)(end);i++) #define FORE(i,start,end) for(int i=start;i<=(int)end;i++) #define RFORE(i,start,end) for(int i = start; i>=end; i--) #define all(a) a.begin(), a.end() #define v vector typedef long long ll; typedef pair<int, int > pii; //template <class T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; template<class T> void minn(T &a, T b) { a = min(a, b); } template<class T> void maxx(T &a, T b) { a = max(a, b); } int go(int L, int R){ /* LIMIT--; if(!LIMIT){ exit(0); } cout << "go " << L << " to " << R << endl; */ if(L==R) return L; int M = (L+R)/2; Guess(M); int res = Guess(M+1); if(res == 0) assert(0); else if (res == 1) return go(M+1,R); // hotter else go(L,M); // colder } int HC(int N){ return go(1,N); }

Compilation message (stderr)

hottercolder.cpp: In function 'int go(int, int)':
hottercolder.cpp:38:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...