# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
400235 | bigg | 도시들 (IOI15_towns) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "towns.h"
#include<bits/stdc++.h>
using namespace std;
const int MAXN = 1e9;
int dist[5][MAXN];
pair<int, int> p1, p2;
map<int, int> AB;
int hubDistance(int N, int sub) {
p1 = {0,0};
p2 = {0,0};
AB.clear();
for(int i = 0; i < N; i++){
int d = getDistance(0, i);
if(d > p1.second) p1 = {i,d};
}
for(int i = 0; i < N; i++){
dist[0][i] = getDistance(i, p1.first);
if(dist[0][i] > p2.second) p2 = { i, dist[0][i]};
}
for(int i = 0; i < N; i++){
dist[1][i] = getDistance(i, p2.first);
}
int ans = MAXN;
int diam = dist[0][p2.first];
for(int i = 0; i < N; i++) ans = min(ans, (diam + abs(dist[0][i] - dist[1][i]))/2);
for(int i = 0; i < N; i++){
if(i == p1.first || i == p2.first) continue;
int i1 = dist[0][i], i2 = dist[1][i];
AB[i1 - (i1+i2-diam)/2]++;
}
int jacontei = 1;
bool iscentroid = 0;
for(auto it : AB){
if(it.first == ans || it.first == diam - ans){
if(jacontei <= N/2 && N - jacontei - it.second <= N/2 && it.second <= N/2) iscentroid = 1;
}
jacontei += it.second;
}
if(!iscentroid) ans = -ans;
return ans;
}