# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
167465 | faremy | 도시들 (IOI15_towns) | C++14 | 27 ms | 1172 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "towns.h"
#include <algorithm>
#include <iostream>
const int MAXN = 110;
int distToEnd[MAXN];
int hubDistance(int N, int sub)
{
int farthest = 0, end = 0;
for (int iNode = 0; iNode < N; iNode++)
{
int dist = getDistance(0, iNode);
if (dist > farthest)
{
farthest = dist;
end = iNode;
}
}
int diameter = 0, otherEnd = end;
for (int iNode = 0; iNode < N; iNode++)
{
distToEnd[iNode] = getDistance(end, iNode);
if (distToEnd[iNode] > diameter)
{
diameter = distToEnd[iNode];
otherEnd = iNode;
}
}
int minMaxDist = diameter;
for (int iNode = 0; iNode < N; iNode++)
{
int distToOth = getDistance(iNode, otherEnd);
int half = (diameter + distToEnd[iNode] - distToOth) / 2;
minMaxDist = std::min(minMaxDist, std::max(half, diameter - half));
}
return minMaxDist;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |