이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "routers.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
std::vector<int> find_routers(int l, int n, int q) {
vector<int> res(n,l-(l%2));
res[0]=0;
for(ll i=1;i<n;i++)
{
ll a = (res[i-1]+1), b = res[i];
res[i] = b;
while(a<=b)
{
ll m = (a+b)/2;
ll x = use_detector(m);
for(ll j=i;j<=x;j++)
res[j]=min((ll)res[j],m);
if(x<i) a=m+1;
else b=m-1;
}
//cout<<"res[i]: "<<res[i]<<"\n";
res[i] = 2*res[i]-res[i-1]-2;
}
return res;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |