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
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> PII;
typedef pair<long long,int> PLI;

const int MAX_N = 7005;
const long long INF = 2e18;

vector<PII> zel[MAX_N];
long long dp[MAX_N][MAX_N];
vector<PLI> edges;
long long dist[MAX_N];

void dijkstra(int m){
    for(int i=1;i<m;i++) dist[i] = INF;
    set<PLI> S;
    for(int i=0;i<m;i++) S.insert({dist[i], i});

    while(!S.empty()){
        PLI v = *S.begin();
        S.erase(S.begin());
        for(PLI e: edges){
            int u = v.second+e.second;
            if(u >= m) u -= m;
            if(dist[u] > dist[v.second]+e.first){
                S.erase(make_pair(dist[u], u));
                dist[u] = dist[v.second]+e.first;
                S.insert(make_pair(dist[u], u));
            }
        }
    }
}


int main(){
    ios_base::sync_with_stdio(0);
    int n,k,m;
    cin>>n>>k>>m;
    for(int i=0;i<n;i++){
        int a,b,c;
        cin>>a>>b>>c;
        zel[a].push_back({b,c});
    }

    for(int i=0;i<=k;i++) for(int j=0;j<m;j++) dp[i][j] = INF;
    dp[0][0] = 0;
    for(int i=1;i<=k;i++){
        for(PII z: zel[i]){
            for(int j=0;j<m;j++){
                int jj = j+z.first;
                if(jj >= m) jj -= m;
                dp[i][jj] = min(dp[i][jj], dp[i-1][j]+z.second);
            }
        }
    }

    for(int j=0;j<m;j++){
        // cout<<j<<" "<<dp[k][j]<<endl;
        if(dp[k][j] != INF){
            edges.push_back({dp[k][j], j});
        }
    }

    dijkstra(m);
    for(int i=0;i<m;i++){
        if(dist[i] == INF) cout<<-1<<endl;
        else cout<<dist[i]<<endl;
    }
}