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
#include<cstdio>
#include<vector>
#include<queue>
#include<algorithm>
using namespace std;

int t[2010][2010];
bool b[2010];
int pr[2010];
vector<pair<int,pair<int,int> > > Q;

int main()
{
	long long s=0;
    int n;
    scanf("%d", &n);

    for(int i=1;i<=n;i++)
	{
		pr[i]=i;
		for(int j=i;j<=n;j++)
		{
			scanf("%d", &t[i][j]);
			Q.push_back(make_pair(t[i][j],make_pair(i,j)));
		}
	}

	sort(Q.begin(),Q.end());

	for(int i=0;i<n;i++)
	{
		for(int j=0;j<Q.size();j++)
		{
			if(pr[Q[j].second.second]-pr[Q[j].second.first-1]==1){
				//printf("%d %d\n", Q[j].second.first, Q[j].second.second);
				s+=Q[j].first;
				for(int k=Q[j].second.first;k<=Q[j].second.second;k++)
				{
					if(b[k]==0){
						b[k]=1;
						for(int l=k;l<=n;l++) pr[l]--;
						break;
					}
				}
				break;
			}
		}
	}
	printf("%lld", s);
}