Submission #151846

# Submission time Handle Problem Language Result Execution time Memory
151846 2019-09-05T05:11:53 Z davitmarg Hotter Colder (IOI10_hottercolder) C++17
0 / 100
662 ms 140544 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,ord=1;

    Guess(1);
    while(l<=r)
    {
        m=(l+r)/2;
        if(l==r)
        {
            ans=m;
            break;
        }
        int res;
        if(ord)
            res=Guess(r);
        else
        {
            res=Guess(r);
            res*=-1;
        }
        
        if(res==0)
        {
            ans=m;
            break;
        }
        if(res==1)
        {
            l=m+1;
            ord=0;
        }
        else
        {
            r=m-1+(r-l)%2;
            ord=1;
        }
    }
    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:83:12: warning: 'ans' may be used uninitialized in this function [-Wmaybe-uninitialized]
     return ans;
            ^~~
# Verdict Execution time Memory Grader output
1 Incorrect 42 ms 17784 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Incorrect 42 ms 17784 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Incorrect 41 ms 17784 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Incorrect 662 ms 140544 KB Output isn't correct - alpha = 0.000000000000