답안 #138940

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
138940 2019-07-31T02:49:41 Z baluteshih Hotter Colder (IOI10_hottercolder) C++14
50 / 100
2898 ms 8312 KB
#include "grader.h"
#include <stdlib.h>
#include <chrono>
#define jizz ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define pb push_back
#define ET cout << "\n"
#define F first
#define S second
#define MP make_pair
#define ALL(v) v.begin(),v.end()
#define MEM(i,j) memset(i,j,sizeof i)
#define DB(a,s,e) {for(int i=s;i<e;++i) cout << a[i] << " ";ET;}
using namespace std;
typedef long long ll;

int HC(int N)
{
	srand(chrono::system_clock::now().time_since_epoch().count());
	int l=1,r=N,ls=-1;
	while(l<r)
	{
		int m=l+r>>1,t;
		if(ls!=l&&ls!=r)
			if(rand()%2) Guess(l),ls=l;
			else Guess(r),ls=r;
		if(ls==l)
		{
			t=Guess(r),ls=t;
			if(t==0)
			{
				l=r=m;
				break;
			}
			else if(t==1) l=m+1;
			else r=m; 
		}
		else
		{
			t=Guess(l),ls=t;
			if(t==0)
			{
				l=r=m;
				break;
			}
			else if(t==1) r=m;
			else l=m+1; 
		}
	}
	return l;
}

Compilation message

hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:22:10: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   int m=l+r>>1,t;
         ~^~
hottercolder.cpp:23:5: warning: suggest explicit braces to avoid ambiguous 'else' [-Wdangling-else]
   if(ls!=l&&ls!=r)
     ^
# 결과 실행 시간 메모리 Grader output
1 Correct 269 ms 1272 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 271 ms 1272 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 264 ms 1272 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2898 ms 8312 KB Output isn't correct - alpha = 0.000000000000