# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
136009 | JustasZ | The Big Prize (IOI17_prize) | C++14 | 89 ms | 504 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "prize.h"
#include <bits/stdc++.h>
#define pb push_back
#define all(a) a.begin(), a.end()
#define sz(a) (int)a.size()
#define x first
#define y second
#define debug(...) cout << "[" << #__VA_ARGS__ << ": " << __VA_ARGS__ << "]\n"
#define rd() abs((int)rng())
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int>pii;
const int maxn = 2e5 + 100;
const int mod = 1e9 + 7;
mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
/*vector<int> ask(int i)
{
cout << "? " << i << endl;
vector<int>a(2);
cin >> a[0] >> a[1];
return a;
}*/
int find_best(int n)
{
vector<int>a;
if(n < 5000)
{
for(int i = 0; i < n; i++)
{
a = ask(i);
if(a[0] == 0 && a[1] == 0)
return i;
}
}
int mx = 0;
for(int it = 0; it < 5; it++)
{
int p = rd() % n;
a = ask(p);
mx = max(mx, a[0] + a[1]);
}
int cnt = 5;
int i = 0;
while(i < n)
{
//assert(++cnt < 10000);
a = ask(i);
if(a[0] + a[1] == 0)
return i;
if(a[0] + a[1] == mx)
{
int fi = a[0], se = a[1];
int l = i + 1, r = n - se;
while(l < r)
{
int mid = (l + r) / 2;
//assert(++cnt < 10000);
a = ask(mid);
if(a[0] + a[1] != mx)
r = mid;
else
{
if(a[0] > fi)
r = mid - 1;
else
l = mid + 1;
}
}
//assert(++cnt < 10000);
a = ask(l);
//assert(a[0] + a[1] != mx);
if(a[0] + a[1] == 0)
return l;
i = l + 1;
}
else
i++;
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |