Submission #404689

# Submission time Handle Problem Language Result Execution time Memory
404689 2021-05-14T20:19:02 Z Jasiekstrz Hotter Colder (IOI10_hottercolder) C++17
87 / 100
608 ms 10856 KB
#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
int HC(int N)
{
	if(N==1)
		return 1;
	if(N==2)
	{
		Guess(1);
		int tmp=Guess(2);
		if(tmp==1)
			return 2;
		return 1;
	}
	mt19937 gen(2913319);
	int bg=1,en=N;
	int l=-1;
	while(bg<en)
	{
		//cerr<<bg<<" "<<en<<" "<<l<<"\n";
		if(l<bg || en<l)
		{
			l=bg;
			Guess(l);
		}
		if(l==bg)
		{
			int nl=en-(en-bg)/3;
			int tmp=Guess(nl);
			if(tmp==0)
				return (nl+l)/2;
			else if(tmp==-1)
				en=(nl+l-1)/2;
			else
				bg=(nl+l+2)/2;
			l=nl;
		}
		else if(l==en)
		{
			int nl=bg+(en-bg)/3;
			int tmp=Guess(nl);
			if(tmp==0)
				return (nl+l)/2;
			else if(tmp==1)
				en=(nl+l-1)/2;
			else
				bg=(nl+l+2)/2;
			l=nl;
		}
		else
		{
			int nl=l-1;
			int tmp=Guess(nl);
			if(tmp==0)
				return (nl+l)/2;
			else if(tmp==1)
				en=nl;
			//else if(bg==nl || en-l<=1)
			//	bg=l;
			else
				bg=nl;
			l=nl;
		}
	}
	return bg;
}
# Verdict Execution time Memory Grader output
1 Correct 27 ms 1228 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 22 ms 1296 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 22 ms 1228 KB Output is correct
# Verdict Execution time Memory Grader output
1 Partially correct 608 ms 10856 KB Output is partially correct - alpha = 0.500000000000