# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
284413 | SamAnd | 도시들 (IOI15_towns) | C++17 | 31 ms | 1152 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "towns.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 115, INF = 1000000009;
int n;
int ans[N][N];
int qry(int x, int y)
{
if (ans[x][y] != -1)
return ans[x][y];
return ans[x][y] = ans[y][x] = getDistance(x, y);
}
int hubDistance(int N_, int sub)
{
n = N_;
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < n; ++j)
{
if (i == j)
continue;
ans[i][j] = -1;
}
}
int maxu = -1;
int maxx;
for (int x = 0; x < n; ++x)
{
if (qry(0, x) > maxu)
{
maxu = qry(0, x);
maxx = x;
}
}
int u1 = maxx;
maxu = -1;
for (int x = 0; x < n; ++x)
{
if (qry(u1, x) > maxu)
{
maxu = qry(u1, x);
maxx = x;
}
}
int u2 = maxx;
int R = INF;
for (int x = 0; x < n; ++x)
{
int t1 = qry(u1, u2);
int t2 = qry(u1, x);
int t3 = qry(u2, x);
R = min(R, max((t1 + t3 - t2) / 2, max((t1 + t2 - t3) / 2, (t2 + t3 - t1) / 2)));
}
return R;
}
컴파일 시 표준 에러 (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... |