제출 #318748

#제출 시각아이디문제언어결과실행 시간메모리
318748VROOM_VARUN도시들 (IOI15_towns)C++14
25 / 100
27 ms1172 KiB
/*
ID: varunra2
LANG: C++
TASK: towns
*/

#include <bits/stdc++.h>
#include "towns.h"
using namespace std;

#ifdef DEBUG
#include "lib/debug.h"
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#define debug_arr(...) \
  cerr << "[" << #__VA_ARGS__ << "]:", debug_arr(__VA_ARGS__)
#pragma GCC diagnostic ignored "-Wsign-compare"
//#pragma GCC diagnostic ignored "-Wunused-parameter"
//#pragma GCC diagnostic ignored "-Wunused-variable"
#else
#define debug(...) 42
#endif

#define EPS 1e-9
#define IN(A, B, C) assert(B <= A && A <= C)
#define INF (int)1e9
#define MEM(a, b) memset(a, (b), sizeof(a))
#define MOD 1000000007
#define MP make_pair
#define PB push_back
#define all(cont) cont.begin(), cont.end()
#define rall(cont) cont.end(), cont.begin()
#define x first
#define y second

const double PI = acos(-1.0);
typedef long long ll;
typedef long double ld;
typedef pair<int, int> PII;
typedef map<int, int> MPII;
typedef multiset<int> MSETI;
typedef set<int> SETI;
typedef set<string> SETS;
typedef vector<int> VI;
typedef vector<PII> VII;
typedef vector<VI> VVI;
typedef vector<string> VS;

#define rep(i, a, b) for (int i = a; i < (b); ++i)
#define trav(a, x) for (auto& a : x)
#define sz(x) (int)(x).size()
typedef pair<int, int> pii;
typedef vector<int> vi;
#pragma GCC diagnostic ignored "-Wsign-compare"
// util functions
int n;
const int mx = 150;
int vals[mx][mx];
map<PII, int> mp;

// int getDistance(int i, int j) { return vals[i][j]; }

int gt(int i, int j) {
  if (i > j) swap(i, j);
  if (i == j) return 0;
  if (mp[MP(i, j)]) return mp[MP(i, j)];
  mp[MP(i, j)] = getDistance(i, j);
  return mp[MP(i, j)];
}

int rootdist(int d1, int d2, int dtot) {
  // d1 + d2 - 2 * dlca = dtot
  // (d1 + d2 - dtot)/2 = dlca
  // assert(!((d1 + d2 + dtot)%2));
  return (d1 + d2 - dtot) / 2;
}

int leafdist(int d1, int d2, int dtot) {
  // what is the dist(d1, dlca)
  // dist(d1, dlca) = d1 - rootdist(dlca)
  return d1 - rootdist(d1, d2, dtot);
}

void calc(int from, VI& d) {
  for (int i = 0; i < n; i++) {
    if (i == from) continue;
    d[i] = gt(from, i);
  }
}

int root;

int hubDistance(int n, int sub) {
  ::n = n;
  mp.clear();
  VI d0(n, 0), d1(n, 0), d2(n, 0);
  calc(0, d0);
  int ind1 = max_element(all(d0)) - d0.begin();
  calc(ind1, d1);
  int ind2 = max_element(all(d1)) - d1.begin();
  calc(ind2, d2);
  // now we can root the tree at ind1
  root = ind1;
  // now the center of the tree is on the path from ind1 -> ind2
  // i.e. the center of the tree is from the root -> ind2
  // that means the center is one of the ancestors of ind2, (yeah no shit
  // sherlock)
  int ret = 2 * INF;
  for (int i = 0; i < n; i++) {
    int val1 = rootdist(d1[ind2], d1[i], d2[i]);
    int val2 = leafdist(d1[ind2], d1[i], d2[i]);
    // debug(i, val1, val2);
    ret = min(ret, max(val1, val2));
  }
  return ret;
}

// int main() {
// #ifndef ONLINE_JUDGE
//   freopen("towns.in", "r", stdin);
//   freopen("towns.out", "w", stdout);
// #endif
//   cin.sync_with_stdio(0);
//   cin.tie(0);
//   int subbb;
//   cin >> subbb;
//   int t;
//   cin >> t;
//   while (t--) {
//     int n;
//     cin >> n;
//     for (int i = 0; i < n; i++) {
//       for (int j = 0; j < n; j++) {
//         cin >> vals[i][j];
//       }
//     }

//     cout << hubDistance(n, 2) << '\n';
//   }
//   return 0;
// }

컴파일 시 표준 에러 (stderr) 메시지

towns.cpp: In function 'int hubDistance(int, int)':
towns.cpp:92:31: warning: declaration of 'n' shadows a global declaration [-Wshadow]
   92 | int hubDistance(int n, int sub) {
      |                               ^
towns.cpp:55:5: note: shadowed declaration is here
   55 | int n;
      |     ^
towns.cpp:97:35: warning: conversion from '__gnu_cxx::__normal_iterator<int*, std::vector<int> >::difference_type' {aka 'long int'} to 'int' may change value [-Wconversion]
   97 |   int ind1 = max_element(all(d0)) - d0.begin();
      |              ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
towns.cpp:99:35: warning: conversion from '__gnu_cxx::__normal_iterator<int*, std::vector<int> >::difference_type' {aka 'long int'} to 'int' may change value [-Wconversion]
   99 |   int ind2 = max_element(all(d1)) - d1.begin();
      |              ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
towns.cpp:92:28: warning: unused parameter 'sub' [-Wunused-parameter]
   92 | 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...