#include "bits/stdc++.h" using namespace std; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define rer(i,l,u) for(int (i)=(int)(l);(i)<=(int)(u);++(i)) #define reu(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i)) static const int INF = 0x3f3f3f3f; static const long long INFL = 0x3f3f3f3f3f3f3f3fLL; typedef vector vi; typedef pair pii; typedef vector > vpii; typedef long long ll; template static void amin(T &x, U y) { if(y < x) x = y; } template static void amax(T &x, U y) { if(x < y) x = y; } vector t_parent; vi t_ord; void tree_getorder(const vector &g, int root) { int n = g.size(); t_parent.assign(n, -1); t_ord.clear(); vector stk; stk.push_back(root); while(!stk.empty()) { int i = stk.back(); stk.pop_back(); t_ord.push_back(i); for(int j = (int)g[i].size() - 1; j >= 0; j --) { int c = g[i][j]; if(t_parent[c] == -1 && c != root) stk.push_back(c); else t_parent[i] = c; } } } int main() { int N; int M; while(~scanf("%d%d", &N, &M)) { vector U(N); for(int i = 0; i < N; ++ i) scanf("%d", &U[i]); vector > g(N); vector > > gw(N); for(int i = 0; i < N - 1; ++ i) { int u, v, w; scanf("%d%d%d", &u, &v, &w); g[u].push_back(v); g[v].push_back(u); gw[u].push_back(make_pair(v, w)); gw[v].push_back(make_pair(u, w)); } tree_getorder(g, 0); M /= 2; vector> memo(N, vector(M+1, -1)); function(int, int)> rec = [&](int i, int j) -> vector { if(g[i].size() == j) return vector(1, U[i]); int c = g[i][j]; if(c == t_parent[i]) return rec(i, j + 1); int w = gw[i][j].second; vector l = rec(c, 0); vector r = rec(i, j + 1); vector res(min(l.size() + r.size() + w - 1, M + 1), -INFL); rep(y, r.size()) res[y] = r[y]; rep(x, l.size()) { ll a = l[x]; if(a == -INFL) continue; int lim = min(r.size(), res.size() - x - w); rep(y, lim) { amax(res[x + y + w], a + r[y]); } } return res; }; auto v = rec(0, 0); ll ans = *max_element(v.begin(), v.end()); printf("%lld\n", ans); } return 0; }