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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#include <stdio.h>
#include <algorithm>
#include <climits>

using namespace std;

int n;

struct Rg {
    int c;
    int a, b;
    int present;

    bool operator<(const Rg o) const {
        return (c < o.c);
    }

};

typedef struct Rg Rg;

Rg rs[2000 * 2000];
Rg m[2000];
int size = 0;
int found = 0;

static void show(const char* prefix, Rg& x) {
    // printf("%s %d...%d c = %d\n", prefix, x.a, x.b, x.c);
}

int main() {

    scanf("%d", &n);

    for(int i=0; i < 2000; i++) {
        m[i].present = 0;
    }

    for(int i=0; i < n; i++) {
        for(int j=0; j < n - i; j++) {
            Rg &r = rs[size];
            r.a = i;
            r.b = i + j + 1;
            scanf("%d", &r.c);
            size++;
        }
    }

    sort(rs, rs + size);

    for(int i=0; i < size; i++) {
        Rg &r = rs[i];
        // printf("%d %d => %d\n", r.a, r.b, r.c);
    }

    int cur = 0;
    while(found < n) {
        Rg r = rs[cur]; /* aktualny kandydat */
        show("Cand:", r);
        while(1) {
            show(" Change:", r);
            if (r.a == r.b) { /* zalezny */
                break;
            }
            Rg &q = m[r.a];
            if (q.present) { /* eliminacja */
                show(" Elim with:", q);
                if (q.b <= r.b) {
                    r.a = q.b;
                } else {
                    r.a = r.b;
                    r.b = q.b;
                }
            } else { /* nowy wektor */
                r.present = 1;
                m[r.a] = r;
                found++;
                break;
            }
        }
        cur++;
    }

    long long int cost = 0;
    for (int i=0; i < n; i++) {
        cost += (long long int)m[i].c;
    }

    printf("%lld\n", cost);

    return 0;
}