# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1122155 | SalihSahin | 도시들 (IOI15_towns) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
#include "towns.h"
int hubDistance(int N, int sub) {
int d1 = 0, dis = 0;
for(int i = 1; i < N; i++){
int x = getDistance(0, i);
if(x > dis){
d1 = i;
dis = x;
}
}
int d2 = 0, dis = 0;
for(int i = 0; i < N; i++){
int x = getDistance(d1, i);
if(x > dis){
d2 = i;
dis = x;
}
}
int diameter = dis;
int other = 0;
while(other == d1 || other == d2) other++;
int c1 = getDistance(d1, other), c2 = getDistance(d2, other);
int othertoroot = ((c1 + c2) - diameter)/2;
int R = max(c1 - othertoroot, c2 - othertoroot);
return R;
}