제출 #96546

#제출 시각아이디문제언어결과실행 시간메모리
96546janlivens도시들 (IOI15_towns)C++14
컴파일 에러
0 ms0 KiB
// This  Program is made by Jan(Codezebra)
#include<bits/stdc++.h>
#include "grader.h"
#define int long long
#define INF 0x3f3f3f3f
using namespace std;

int hubDistance(int n,int sub){
	int dist[n][n];
	int mx=0,my=0,ma=0;
	for(int i=0;i<n;i++){
		for(int j=i+1;j<n;j++){
			dist[i][j]=getdistance(i,j);
			dist[j][i]=dist[i][j];
			if(dist[i][j]>ma){
				mx=i;
				my=j;
				ma=dist[i][j];
			}
		}
	}
	int ans=INF
	int(int i=0;i<n;i++){
		int a=dist[mx][my],b=dist[mx][i],c=dist[my][i];
		ans=min(ans,max(a+b-c,max(a-b+c,-a+b+c)));
	}
	return ans;
	
}

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

towns.cpp:3:10: fatal error: grader.h: No such file or directory
 #include "grader.h"
          ^~~~~~~~~~
compilation terminated.