Submission #151845

# Submission time Handle Problem Language Result Execution time Memory
151845 2019-09-05T05:09:14 Z davitmarg Hotter Colder (IOI10_hottercolder) C++17
77 / 100
773 ms 8216 KB
/*DavitMarg*/
#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <string>
#include <cstring>
#include <map>
#include <unordered_map>
#include <set>
#include <queue>
#include <iomanip>
#include <stack>
#include <cassert>
#include <iterator>
#include <bitset>
#include <fstream>
#define mod 1000000007ll
#define LL long long  
#define LD long double
#define MP make_pair
#define PB push_back
#define all(v) v.begin(),v.end()
using namespace std;
#ifndef death
    #include "grader.h";
#endif

#ifdef death


int Guess(int a)
{
    cout<<"! "<<a<<endl;
    int res;
    cin>>res;
    return res; 
}
#endif


int HC(int n)
{
    int l=1;
    int r=n;
    int m;
    int ans;

    while(l<=r)
    {
        m=(l+r)/2;
        if(l==r)
        {
            ans=m;
            break;
        }
        Guess(l);
        int res=Guess(r);
        if(res==0)
        {
            ans=m;
            break;
        }
        if(res==1)
            l=m+1;
        else
            r=m-1+(r-l)%2;
    }
    return ans;
}


#ifdef death

int main()
{
    

    cout<<HC(6)<<endl;
   
    return 0;
}

#endif

 
/*

 
*/ 

Compilation message

hottercolder.cpp:26:24: warning: extra tokens at end of #include directive
     #include "grader.h";
                        ^
hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:69:12: warning: 'ans' may be used uninitialized in this function [-Wmaybe-uninitialized]
     return ans;
            ^~~
# Verdict Execution time Memory Grader output
1 Correct 28 ms 1272 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 29 ms 1272 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 28 ms 1272 KB Output is correct
# Verdict Execution time Memory Grader output
1 Partially correct 773 ms 8216 KB Output is partially correct - alpha = 0.068965517241