# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
624239 | MatesV13 | Finding Routers (IOI20_routers) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int rezultati[100005];
int nadi(int lo, int hi, int val){
if (lo==hi) return lo;
int mid = (lo+hi+1)/2;
if (!rezultati[mid])
rezultati[mid] = use_detector(mid) + 1;
int odgovor = rezultati[mid]-1;
if (odgovor >= val) return nadi(lo, mid-1, val);
return nadi (mid, hi, val);
}
vector<int> find_routers(int l, int n, int q){
vector<int> poz;
poz.push_back(0);
while (poz.size() != n){
int temp = nadi(0, l, poz.size());
int idx = 2*temp-poz[poz.size()-1];
poz.push_back(idx);
}
return poz;
}