Submission #615721

#TimeUsernameProblemLanguageResultExecution timeMemory
615721Apiram도시들 (IOI15_towns)C++14
Compilation error
0 ms0 KiB
#include "towns.h"
#include <bits/stdc++.h>
using namespace std;
vector<vector<int>>arr(200,vector<int>(200));
int getDistance(int i,int j){
	//cout<<i<<" "<<j<<" "<<arr[i][j]<<'\n';
	return arr[i][j];
};
int hubDistance(int N, int sub) {
	int root = 0;
	vector<int>dist(N);
	for (int i = 0;i<N;++i){
		if (i == root)dist[i] = 0;
		else dist[i] = getDistance(i,root);
	}
	for (int i = 0;i<N;++i){
		if (dist[i] > dist[root]){
			root = i;
		}
	}
	for (int i = 0;i<N;++i){
		if (i == root)dist[i] = 0;
		else dist[i] = getDistance(i,root);
	}
	int root2 = root;
	for (int i = 0;i<N;++i){
		if (dist[i] > dist[root2])root2 = i;
	}
	int answer = dist[root2];
	vector<int>dist2(N);
	for (int i = 0;i<N;++i){
		if (i == root2){
			dist2[i] = 0;
		}
		else{
			dist2[i] = getDistance(root2,i);
		}
	}
	for (int i = 0;i<N;++i){
		int x = (dist[i] + dist2[i] - dist[root2])/2;
		answer = min(answer,max(dist[i] - x,dist2[i] - x)); 
	}
	for (int i = 0;i<N;++i){
		int x = (dist[i] + dist2[i] - dist[root2])/2;
		if (answer == max(dist[i] - x,dist2[i] - x)){
			int sub1 = 0,sub2 = 0,sub3 = 0,sub4 = 0;
			for (int j = 0;j<N;++j){
				if (dist[j] <= dist[i] - x){
					sub1++;
				}
				else if (dist2[j]<=dist2[i] - x){
					sub2++;
				}
				else if (getDistance(i,j) <=x)sub3++;
				else sub4++;
				if (sub4 > N / 2 + 2)break;
				if (sub3 > N / 2)break;
			}
			while (sub4 > N/2){
				--sub4;
				++sub3;
			}
			if (max({sub1,sub2,sub3,sub4}) <=N/2){
				return answer;
			}
			break;
		}
	}
	return -answer;
}

Compilation message (stderr)

towns.cpp: In function 'int hubDistance(int, int)':
towns.cpp:9:28: warning: unused parameter 'sub' [-Wunused-parameter]
    9 | int hubDistance(int N, int sub) {
      |                        ~~~~^~~
/usr/bin/ld: /tmp/ccw8Vciv.o: in function `getDistance(int, int)':
grader.c:(.text+0x110): multiple definition of `getDistance(int, int)'; /tmp/ccpYNvLu.o:towns.cpp:(.text+0x0): first defined here
collect2: error: ld returned 1 exit status