# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
74220 | 2018-08-30T13:39:41 Z | MKopchev | 도시들 (IOI15_towns) | C++14 | 20 ms | 544 KB |
#include<bits/stdc++.h> #include "towns.h" using namespace std; const int nmax=1e2+42; int dist[nmax][nmax]; int hubDistance(int N,int sub) { for(int i=0;i<N;i++) for(int j=i+1;j<N;j++) { int d=getDistance(i,j); dist[i][j]=d; dist[j][i]=d; } int p=0,q=0; for(int i=0;i<N;i++) for(int j=i+1;j<N;j++) if(dist[p][q]>dist[i][j])p=i,j=q; int mini=1e9; for(int k=0;k<N;k++) { int n1=(dist[p][q]+dist[k][p]-dist[k][q])/2; mini=min(mini,max(n1,dist[p][q]-n1)); } return mini; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 20 ms | 504 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 504 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 19 ms | 544 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 544 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 544 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 544 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |