Submission #96547

#TimeUsernameProblemLanguageResultExecution timeMemory
96547janlivensTowns (IOI15_towns)C++14
Compilation error
0 ms0 KiB
// This  Program is made by Jan(Codezebra)
#include<bits/stdc++.h>
#include "towns.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;
	
}

Compilation message (stderr)

towns.cpp: In function 'long long int hubDistance(long long int, long long int)':
towns.cpp:13:15: error: 'getdistance' was not declared in this scope
    dist[i][j]=getdistance(i,j);
               ^~~~~~~~~~~
towns.cpp:13:15: note: suggested alternative: 'getDistance'
    dist[i][j]=getdistance(i,j);
               ^~~~~~~~~~~
               getDistance
towns.cpp:4:13: error: expected ',' or ';' before 'long'
 #define int long long
             ^
towns.cpp:23:2: note: in expansion of macro 'int'
  int(int i=0;i<n;i++){
  ^~~
towns.cpp:23:14: error: 'i' was not declared in this scope
  int(int i=0;i<n;i++){
              ^
towns.cpp:8:27: warning: unused parameter 'sub' [-Wunused-parameter]
 int hubDistance(int n,int sub){
                           ^~~