| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 50154 | Mamnoon_Siam | The Big Prize (IOI17_prize) | C++17 | 100 ms | 5640 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.
//#pragma GCC optimize("Ofast,unroll-loops,no-stack-protector")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#include "prize.h"
#include <bits/stdc++.h>
using namespace std;
#define debug(s) cout<< #s <<" = "<< s <<endl
#define all(v) (v).begin(), (v).end()
#define KeepUnique(v) (v).erase( unique(all(v)), v.end() )
#define MEMSET(a,val) memset(a, val, sizeof a)
#define PB push_back
#define endl '\n'
inline int myrand(int l, int r) {
int ret = rand(); ret <<= 15; ret ^= rand();
if(ret < 0) ret = -ret; ret %= (r-l+1); ret += l;
return ret;
}
template <typename F, typename S>
ostream& operator << (ostream& os, const pair< F, S>& p) {
return os<<"(" <<p.first<<", "<<p.second<<")";
}
const int maxn = 200010;
vector<int> memo[maxn];
int Left(int i) {
if(i < 0) return 0;
if(memo[i].empty()) memo[i] = ask(i);
return memo[i][0];
}
int Right(int i) {
if(i < 0) return 0;
if(memo[i].empty()) memo[i] = ask(i);
return memo[i][1];
}
int Total(int i) {
if(i < 0) return 0;
if(memo[i].empty()) memo[i] = ask(i);
return memo[i][0] + memo[i][1];
}
int find_best(int n) {
if(n <= 5000) { // fix
for(int i = 0; i < n; i++) {
if(Total(i) == 0) {
return i;
}
}
}
int mx_tot = 0, id = -1;
for(int i = 0; i < 1000; i++) { // fix
mx_tot = max(mx_tot, Total(i));
}
int now = 0;
int cnt = 0;
while(now < n) {
while(Total(now) < mx_tot and now < n) {
if(Total(now) == 0) return now;
now++;
cnt++;
//assert(cnt < 2000000);
}
int lo = now, hi = n - 1;
int ret = -1;
while(lo <= hi) {
int mid = lo + hi >> 1;
bool full = ((Left(mid) - Left(now) == 0) and (Total(mid) == mx_tot));
if(!full) {
hi = mid - 1;
} else {
lo = mid + 1;
ret = mid;
}
}
now = ret + 1;
cnt++;
//assert(cnt < 2000000);
}
return 0;
}
Compilation message (stderr)
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
