# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
287269 | evpipis | 도시들 (IOI15_towns) | C++11 | 25 ms | 1024 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "towns.h"
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define pb push_back
#define mp make_pair
typedef pair<int, int> ii;
const int len = 115;
int n, s, a, b, dep[len];
map<ii, int> mym;
map<int, vector<int> > adj;
int ask(int a, int b){
if (a > b)
swap(a, b);
if (mym.count(mp(a, b)))
return mym[mp(a, b)];
return mym[mp(a, b)] = getDistance(a, b);
}
void fix_graph(){
s = 0, a = 0, b = 0;
for (int i = 0; i < n; i++)
if (ask(s, i) > ask(s, a))
a = i;
for (int i = 0; i < n; i++)
if (ask(a, i) > ask(a, b))
b = i;
adj.clear();
for (int i = 0; i < n; i++){
int pos = (ask(a, i)+ask(a, s)-ask(s, i))/2;
adj[pos].pb(i);
dep[i] = (ask(a, i)+ask(s, i)-ask(a, s))/2;
}
}
void find_hubs(int &R, vector<int> &hubs){
int diam = ask(a, b);
R = diam;
hubs.clear();
for (auto &it: adj){
int pos = it.fi;
if (max(pos, diam-pos) < R)
hubs.clear(), hubs.pb(pos), R = max(pos, diam-pos);
else if (max(pos, diam-pos) == R)
hubs.pb(pos);
}
}
int hubDistance(int N, int sub) {
mym.clear(), n = N;
vector<int> hubs;
int R;
fix_graph();
find_hubs(R, hubs);
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... |