1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// PA2014, runda 1, Kuglarz
// Andrzej Pezarski

#include <cstdlib>
#include <cstdio>
#include <vector>
#include <algorithm>


using namespace std;

pair<int, int> T[2001];

int find(int v) {
	if (T[v].first!=v) T[v].first=find(T[v].first);
	return T[v].first;
}

bool zlep(int x, int y) {
	x=find(x);
	y=find(y);
	if (x==y) return false;
	if (T[x].second<=T[y].second)
		T[x].first=y;
	else
		T[y].first=x;
	if (T[x].second==T[y].second)
		T[y].second++;
	return true;
}

int main() {
	int N;
	scanf("%d", &N);
	for (int i=0; i<=N; i++) T[i]=make_pair(i, 0);
	vector<pair<int, pair<int, int> > > A;

	for (int i=0; i<N; i++) {
		for (int j=i+1; j<=N; j++) {
			int c;
			scanf("%d", &c);
			A.push_back(make_pair(c, make_pair(i, j)));
		}
	}
	sort(A.begin(), A.end());

	long long res=0;
	for (auto a : A) {
		if (!N) break;
		if (zlep(a.second.first, a.second.second)) {
			N--;
			res+=a.first;
		}
	}

	printf("%lld", res);
	return 0;
}