# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1074229 | 2024-08-25T08:55:59 Z | Hugo1729 | Hotter Colder (IOI10_hottercolder) | C++11 | 600 ms | 24356 KB |
#include "grader.h" #include <bits/stdc++.h> using namespace std; int p; int make_guess(int x){ int sus = Guess(x); //cout << x << ' ' << sus << '\n'; return sus; } int HC(int N){ // int g = make_guess(1); // int h = make_guess(N); // if (g == 0) return N/2; // if (g < 0) return N/4; // if (g > 0) return 3*N/4; //cout << N << '\n'; p=-1; int lo=1,hi=N; while(lo<hi){ int mid=(hi+lo)/2; if(p==-1){ int g1 = make_guess(mid),g2=make_guess(mid+1); p=mid+1; if(g2==1){ lo=mid+1; }else{ hi=mid; } }else{ int query=min(N,max(1,(lo+hi-p))); if(hi-lo>3){ int next_query2=((p+query+1)/2+hi-query),next_query1=((p+query)/2+lo-query); //cout << "b: " << next_query1 << ' ' << next_query2 << '\n'; if(next_query1<1){ query+=next_query1-1; } else if(next_query2>N){ query+=(N-next_query2); } } if(query<1||query>N||query==p){ if(p<=(lo+hi)/2){ query=p+1; }else{ query=p-1; } } //cout << query << '\n'; int g=make_guess(query); if(g==0){ //cout << (query+p)/2 << "\n\n"; return (query+p)/2; } else if(query<p){ if(g==1)hi=min(hi,(p+query)/2); else lo=max(lo,(p+query+1)/2); }else{ if(g==-1)hi=min(hi,(p+query)/2); else lo=max(lo,(p+query+1)/2); } p=query; } //cout << "a: " << lo << ' ' << hi << '\n'; } //cout << lo << "\n\n"; return lo; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 22 ms | 1368 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 24 ms | 1372 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 27 ms | 1372 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 600 ms | 24356 KB | Output isn't correct - alpha = 0.000000000000 |
2 | Halted | 0 ms | 0 KB | - |