This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "towns.h"
#include <cstring>
#include <cstdio>
#include <algorithm>
#include <cassert>
#include <vector>
#include <map>
constexpr int maxn = 120;
int dp[maxn][maxn], c[maxn];
std::map<int, std::vector<int>> filhos;
int get(int i, int j) {
if(i > j) std::swap(i, j);
if(dp[i][j] != -1) return dp[i][j];
return dp[i][j] != -1 ? dp[i][j] : dp[i][j] = getDistance(i, j);
}
struct DSU
{
int pai[maxn], peso[maxn];
void init() { for(int i = 0; i < maxn; i++) pai[i] = i, peso[i] = 1; }
int find(int x) { return pai[x] == x?x:pai[x]=find(pai[x]); }
void join(int a, int b) {
a = find(a), b = find(b);
if(a == b) return;
if(peso[a] < peso[b])
std::swap(a, b);
pai[b] = a;
peso[a] += peso[b];
}
int sz(int x) { return peso[find(x)]; }
} dsu;
int max(int a, int b) { return a > b ? a : b; }
int min(int a, int b) { return a < b ? a : b; }
int hubDistance(int N, int sub) {
memset(dp, -1, sizeof dp);
memset(c, -1, sizeof c);
dsu.init();
filhos.clear();
int a = 0, b = 0, dist = 0;
for(int i = 0; i < 2; i++) {
for(int j = 0; j < N; j++) {
if(a != j) {
int v = get(a, j);
if(v > dist) b = j, dist = v;
}
}
if(!i) a = b, dist = 0, b = 0;
}
int R = 0x3f3f3f3f;
for(int i = 0; i < N; i++) {
if(i == a || i == b) continue;
int d1 = get(a, i), d2 = get(b, i);
c[i] = (d1 + d2 - dist) >> 1;
R = min(R, max(d1, d2) - c[i]);
filhos[d1].push_back(i);
}
if(sub <= 2) return R;
if(sub != 3) assert(0);
int sz = 1;
bool ok = 1;
for(auto it : filhos) {
if(it.first != R) {
sz += (int)(it.second).size();
continue;
}
if(sz > (N >> 1) || N - sz - (int)(it.second).size() > (N >> 1)) ok = 0;
std::vector<int> v = (it.second);
int n = (int)v.size();
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++)
if(i != j && get(v[i], v[j]) != c[v[i]] + c[v[j]])
dsu.join(v[i], v[j]);
for(int i = 0; i < n; i++)
if(dsu.sz(v[i]) > (N >> 1)) ok = 0;
}
return R * (ok?1:-1);
}
# | 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... |