# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
309295 | georgerapeanu | Finding Routers (IOI20_routers) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "routers.h"
#include <vector>
#include <algorithm>
using namespace std;
map<int,int> memo;
int my_detector(int pos){
if(memo.count(pos) == 0){
memo[pos] = use_detector(pos);
}
return memo[pos];
}
void solve(int l,int r,int l_val,int r_val,vector<int> &lst_pos){
if(l_val == r_val){
lst_pos[l_val] = max(lst_pos[l_val],r);
return ;
}
int m = (l + r) / 2;
solve(l,m,l_val,my_detector(m),lst_pos);
solve(m + 1,r,my_detector(m + 1),r_val,lst_pos);
}
vector<int> find_routers(int l, int n, int q) {
vector<int> ans(n,0);
vector<int> lst_pos(n,0);
solve(0,l,0,n - 1,lst_pos);
vector<pair<int,int> > tmp;
for(int i = 0;i < (int)lst_pos.size();i++){
tmp.push_back({lst_pos[i],i});
}
ans[0] = 0;
for(int i = 0;i < (int)tmp.size() - 1;i++){
if(tmp[i].second < tmp[i + 1].second){
ans[tmp[i + 1].second] = 2 * tmp[i].first - ans[tmp[i].second];
}
else{
ans[tmp[i + 1].second] = 2 * tmp[i].first - ans[tmp[i].second] + 1;
}
}
return ans;
}