Submission #96306

# Submission time Handle Problem Language Result Execution time Memory
96306 2019-02-08T09:51:01 Z figter001 The Big Prize (IOI17_prize) C++14
0 / 100
113 ms 1144 KB
#include "prize.h"
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
const int maxn = 2e5+50;

int l,r,dp[maxn],ans;

void qu(int a){
	if(dp[a])return;
	dp[a] = 1;
	vector<int> res = ask(a);
	if(res[0] + res[1] == 0){
		ans = a;
	}
}

int find_best(int n) {
	srand(time(0));
	l=0;r=n-1;
	ans = -1;
	while(1){
		int a = l + (rand() % (r-l+1));
		qu(a);
		if(ans != -1)return ans;
	}
}
# Verdict Execution time Memory Grader output
1 Incorrect 89 ms 1016 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 113 ms 1144 KB Incorrect
2 Halted 0 ms 0 KB -