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
59
60
61
62
63
64
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
#define VAR(i,n) __typeof(n) i=(n)
#define FOREACH(i,n) for(VAR(i,(n).begin());i!=(n).end();i++)
#define REP(i,n) for(int i=0;i<n;i++)
#define SIZE(n) (int)(n).size()
#define PB push_back
#define MP make_pair
#define ST first
#define ND second
int n;
struct Ve
{
	Ve *next;
	Ve():next(this)
	{
	}
	Ve* find()
	{
		if (next==this)return this;
		return next=next->find();
	}
};
bool spr(Ve *a,Ve *b)
{
	return a->find()==b->find();
}
void unio(Ve *a,Ve *b)
{
	a=a->find();
	b=b->find();
	a->next=b;
}
Ve g[2014];
vector<pair<int,pair<int,int> > >v;
void main2()
{
	cin>>n;
	for(int i=1;i<=n;i++)
		for(int i2=i;i2<=n;i2++)
		{
			int a;cin>>a;
			v.PB(MP(a,MP(i-1,i2)));
		}
	sort(v.begin(),v.end());
	long long wy=0;
	FOREACH(i,v)
	{
		int od=i->ND.ST,doo=i->ND.ND;
		if (!spr(&g[od],&g[doo]))
		{
			wy+=i->ST;
			unio(g[od].find(),g[doo].find());
		}
	}
	cout<<wy<<endl;
}
int main()
{
	ios_base::sync_with_stdio(0);
	main2();
}