Submission #1122160

#TimeUsernameProblemLanguageResultExecution timeMemory
1122160SalihSahinTowns (IOI15_towns)C++14
13 / 100
11 ms484 KiB
#include <bits/stdc++.h> #define pb push_back using namespace std; #include "towns.h" int hubDistance(int N, int sub) { int d1 = 0, dis = 0; for(int i = 1; i < N; i++){ int x = getDistance(0, i); if(x > dis){ d1 = i; dis = x; } } int d2 = 0; dis = 0; for(int i = 0; i < N; i++){ int x = getDistance(d1, i); if(x > dis){ d2 = i; dis = x; } } int diameter = dis; int R = 1e9; for(int i = 0; i < N; i++){ if(i == d1 || i == d2) continue; int other = i; int c1 = getDistance(d1, other), c2 = getDistance(d2, other); int othertoroot = ((c1 + c2) - diameter)/2; int Rcan = max(c1 - othertoroot, c2 - othertoroot); R = min(R, Rcan); } return R; }

Compilation message (stderr)

towns.cpp: In function 'int hubDistance(int, int)':
towns.cpp:6:28: warning: unused parameter 'sub' [-Wunused-parameter]
    6 | 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...