제출 #1072403

#제출 시각아이디문제언어결과실행 시간메모리
1072403Zicrus도시들 (IOI15_towns)C++17
0 / 100
11 ms868 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);
}

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 = 1; i < n; i++) {
        ll val = getDist(a, i);
        if (val > mxDist) {
            mxDist = val;
            b = i;
        }
    }
    ll res = 1ll << 62ll;
    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);
        res = min(res, val);
    }
    return res;
}

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

towns.cpp: In function 'int hubDistance(int, int)':
towns.cpp:30:26: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   30 |         ll val = getDist(a, i);
      |                          ^
towns.cpp:39:31: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   39 |         ll distA = getDist(i, a);
      |                               ^
towns.cpp:40:31: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   40 |         ll distB = getDist(i, b);
      |                               ^
towns.cpp:47:12: warning: conversion from 'll' {aka 'long long int'} to 'int' may change value [-Wconversion]
   47 |     return res;
      |            ^~~
towns.cpp:17:28: warning: unused parameter 'sub' [-Wunused-parameter]
   17 | 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...