Submission #1073498

#TimeUsernameProblemLanguageResultExecution timeMemory
1073498ZicrusTowns (IOI15_towns)C++17
26 / 100
13 ms1112 KiB
#include <bits/stdc++.h>
#include "towns.h"
using namespace std;

typedef long long ll;

unordered_map<ll, int> cache;

int getDist(int a, int b) {
    if (a == b) return 0;
    if (a < b) swap(a, b);
    ll hash = ((ll)a << 31) | b;
    if (cache.count(hash)) return cache[hash];
    return cache[hash] = getDistance(a, b);
}

vector<int> lnk, sz;

int find(int a) {
    if (lnk[a] != a) return lnk[a] = find(lnk[a]);
    return lnk[a];
}

void unite(int a, int b) {
    a = find(a); b = find(b);
    if (a == b) return;
    lnk[a] = b;
    sz[b] += sz[a];
}

int hubDistance(int n, int sub) {
    cache.clear();
    ll a = 0, b = 0;
    ll mxDist = 0;
    for (int i = 1; i < n; i++) {
        ll val = getDist(0, i);
        if (val > mxDist) {
            mxDist = val;
            a = i;
        }
    }
    mxDist = 0;
    for (int i = 0; i < n; i++) {
        ll val = getDist(a, i);
        if (val > mxDist) {
            mxDist = val;
            b = i;
        }
    }
    ll res = 1ll << 62ll;
    unordered_map<ll, vector<ll>> hubs;
    for (int i = 0; i < n; i++) {
        if (i == a || i == b) continue;
        ll distA = getDist(i, a);
        ll distB = getDist(i, b);
        ll nw = (distA + distB - mxDist) / 2;
        distA -= nw;
        distB -= nw;
        ll val = max(distA, distB);
        if (val < res) hubs.clear();
        if (val <= res) {
            res = val;
            hubs[distA].push_back(i);
        }
    }
    ll bad = 0;
    for (auto &e : hubs) {
        sz = vector<int>(n, 1);
        lnk = vector<int>(n);
        for (int i = 0; i < n; i++) lnk[i] = i;
        for (auto &x : e.second) {
            ll distX = getDist(x, a) - e.first;
            for (auto &y : e.second) {
                if (find(x) == find(y)) continue;
                ll distY = getDist(y, a) - e.first;
                if (getDist(x, y) < distX + distY) {
                    unite(x, y);
                }
            }
        }
        ll low = 0, high = 0;
        for (int i = 0; i < n; i++) {
            ll distA = getDist(i, a);
            ll distB = getDist(i, b);
            ll nw = (distA + distB - mxDist) / 2;
            distA -= nw;
            if (distA < e.first) low++;
            if (distA > e.first) high++;
        }
        if (low > n/2 || high > n/2) {
            bad++;
            continue;
        }
        bool no = false;
        for (int i = 0; i < n; i++) {
            if (lnk[i] != i) continue;
            if (sz[i] > n/2) no = true;
        }
        if (no) bad++;
    }
    return bad == hubs.size() ? -res : res;
}

Compilation message (stderr)

towns.cpp: In function 'int hubDistance(int, int)':
towns.cpp:44:26: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   44 |         ll val = getDist(a, i);
      |                          ^
towns.cpp:54:31: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   54 |         ll distA = getDist(i, a);
      |                               ^
towns.cpp:55:31: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   55 |         ll distB = getDist(i, b);
      |                               ^
towns.cpp:72:32: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   72 |             ll distX = getDist(x, a) - e.first;
      |                                ^
towns.cpp:72:35: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   72 |             ll distX = getDist(x, a) - e.first;
      |                                   ^
towns.cpp:74:26: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   74 |                 if (find(x) == find(y)) continue;
      |                          ^
towns.cpp:74:37: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   74 |                 if (find(x) == find(y)) continue;
      |                                     ^
towns.cpp:75:36: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   75 |                 ll distY = getDist(y, a) - e.first;
      |                                    ^
towns.cpp:75:39: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   75 |                 ll distY = getDist(y, a) - e.first;
      |                                       ^
towns.cpp:76:29: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   76 |                 if (getDist(x, y) < distX + distY) {
      |                             ^
towns.cpp:76:32: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   76 |                 if (getDist(x, y) < distX + distY) {
      |                                ^
towns.cpp:77:27: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   77 |                     unite(x, y);
      |                           ^
towns.cpp:77:30: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   77 |                     unite(x, y);
      |                              ^
towns.cpp:83:35: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   83 |             ll distA = getDist(i, a);
      |                                   ^
towns.cpp:84:35: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   84 |             ll distB = getDist(i, b);
      |                                   ^
towns.cpp:101:16: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::unordered_map<long long int, std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  101 |     return bad == hubs.size() ? -res : res;
      |            ~~~~^~~~~~~~~~~~~~
towns.cpp:101:31: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
  101 |     return bad == hubs.size() ? -res : res;
      |            ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
towns.cpp:31:28: warning: unused parameter 'sub' [-Wunused-parameter]
   31 | int hubDistance(int n, int sub) {
      |                        ~~~~^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...