이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prize.h"
#include <bits/stdc++.h>
using namespace std;
const int MAX = 2e5 + 5;
int tree[MAX];
void update(int pos, int val){
while(pos < MAX){
tree[pos] += val;
pos += pos & -pos;
}
}
int ask(int l, int r){
if(l != 1) return ask(1, r) - ask(1, l - 1);
int ans = 0;
while(r > 0){
ans += tree[r];
r -= r & -r;
}
return ans;
}
int intRand(){
return (rand() << 15) + rand();
}
vector<int> mp[MAX];
vector<int> query(int i){
if(mp[i].size()) return mp[i];
return mp[i] = ask(i - 1);
}
int find_best(int n) {
if(n <= 5000){
vector<int> order(n);
iota(order.begin(), order.end(), 1);
random_shuffle(order.begin(), order.end());
for (int i:order)
{
vector<int> a = query(i);
if(a[0] + a[1] == 0){
return i - 1;
}
}
}
srand(time(0));
int c = intRand() % n + 1;
vector<int> a = query(c);
int cnt = a[0] + a[1];
while(true){
int l = 1, r = n;
while(l <= r){
int mid = (l + r) / 2;
a = query(mid);
if(a[0] + a[1] == 0){
return mid - 1;
}
a[0] -= ask(1, mid - 1);
a[1] -= ask(mid + 1, n);
if(a[0] + a[1] < cnt){
update(mid, 1);
cnt--;
break;
}
if(a[1] > 0){
l = mid + 1;
}
else{
r = mid - 1;
}
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |