# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
74225 | 2018-08-30T13:44:17 Z | MKopchev | 도시들 (IOI15_towns) | C++14 | 28 ms | 652 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=0;j<N;j++) if(dist[p][q]<dist[i][j])p=i,q=j; 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 | Correct | 21 ms | 376 KB | Output is correct |
2 | Correct | 17 ms | 500 KB | Output is correct |
3 | Correct | 2 ms | 500 KB | Output is correct |
4 | Correct | 22 ms | 592 KB | Output is correct |
5 | Correct | 28 ms | 652 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 652 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 16 ms | 652 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 652 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 652 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 652 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |