답안 #74201

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
74201 2018-08-30T12:44:50 Z MKopchev 도시들 (IOI15_towns) C++14
0 / 100
22 ms 512 KB
#include<bits/stdc++.h>
#include "towns.h"
using namespace std;
const int nmax=1e2+42;
int dist[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]=max(dist[i],d);
        dist[j]=max(dist[j],d);
        }
    int mini=dist[0];
    for(int i=1;i<N;i++)
    {
        mini=min(mini,dist[i]);
    }
    return mini;
}

Compilation message

towns.cpp: In function 'int hubDistance(int, int)':
towns.cpp:6:27: warning: unused parameter 'sub' [-Wunused-parameter]
 int hubDistance(int N,int sub)
                           ^~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 22 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 508 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 18 ms 508 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 508 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 508 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 512 KB Output isn't correct
2 Halted 0 ms 0 KB -