Submission #96549

# Submission time Handle Problem Language Result Execution time Memory
96549 2019-02-10T09:12:31 Z janlivens Towns (IOI15_towns) C++14
Compilation error
0 ms 0 KB
// This  Program is made by Jan(Codezebra)
#include<bits/stdc++.h>
#include "towns.h"
#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
	for(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

towns.cpp: In function 'int hubDistance(int, int)':
towns.cpp:22:2: error: expected ',' or ';' before 'for'
  for(int i=0;i<n;i++){
  ^~~
towns.cpp:22:14: error: 'i' was not declared in this scope
  for(int i=0;i<n;i++){
              ^
towns.cpp:7:27: warning: unused parameter 'sub' [-Wunused-parameter]
 int hubDistance(int n,int sub){
                           ^~~