이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "routers.h"
#ifndef EVAL
#include "grader.cpp"
#endif
#include "bits/stdc++.h"
using namespace std;
template<class T> bool umin(T& a, const T b) { if(a > b) { a = b; return 1; } return 0; }
template<class T> bool umax(T& a, const T b) { if(a < b) { a = b; return 1; } return 0; }
const int N = 1e3+5;
int tt[N];
void fun(int l, int r, int a, int b){
if(l >= r || a + 1 >= b) return;
//~ cout<<l<<" "<<r<<" "<<a<<" "<<b<<endl;
int m = (a + b)>>1;
int t = use_detector(m);
umax(tt[t], m);
fun(l, t, a, m);
fun(t, r, m, b);
}
/*
5 2 10
0 4
6 3 10
0 2 6
*/
vector<int> find_routers(int l, int n, int q) {
fun(0, n-1, 0, l);
vector<int> res(n, 0);
for(int i=1;i<n;i++) res[i] = res[i-1] + (tt[i-1] - 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... |