# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
133665 | Mahdi_Jfri | 도시들 (IOI15_towns) | C++14 | 21 ms | 476 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "towns.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
const int maxn = 1e2 + 20;
int h[2][maxn];
int hubDistance(int n, int sub)
{
memset(h , 0 , sizeof h);
for(int i = 1; i < n; i++)
h[0][i] = getDistance(0 , i);
int a = max_element(h[0] , h[0] + n) - h[0];
memset(h[0] , 0 , sizeof h[0]);
for(int i = 0; i < n; i++)
if(i != a)
h[0][i] = getDistance(a , i);
int b = max_element(h[0] , h[0] + n) - h[0];
for(int i = 0; i < n; i++)
if(i != b)
h[1][i] = getDistance(b , i);
vector<int> val;
int ans = 1e9;
for(int i = 0; i < n; i++)
{
int k = h[0][i] - h[1][i] + h[0][b];
while(k % 2);
k /= 2;
ans = min(ans , max(k , h[0][b] - k));
}
return ans;
}
컴파일 시 표준 에러 (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... |