#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; //#define int long long typedef long long ll; typedef unsigned long long ul; typedef unsigned int ui; constexpr ll mod = 1000000007; const ll INF = mod * mod; typedef pairP; #define stop char nyaa;cin>>nyaa; #define rep(i,n) for(int i=0;i=0;i--) #define Rep(i,sta,n) for(int i=sta;i=1;i--) #define Rep1(i,sta,n) for(int i=sta;i<=n;i++) #define all(v) (v).begin(),(v).end() typedef pair LP; typedef long double ld; typedef pair LDP; const ld eps = 1e-12; const ld pi = acos(-1.0); ll mod_pow(ll x, ll n) { ll res = 1; while (n) { if (n & 1)res = res * x%mod; x = x * x%mod; n >>= 1; } return res; } struct modint { ll n; modint() :n(0) { ; } modint(ll m) :n(m) { if (n >= mod)n %= mod; else if (n < 0)n = (n%mod + mod) % mod; } operator int() { return n; } }; bool operator==(modint a, modint b) { return a.n == b.n; } modint operator+=(modint &a, modint b) { a.n += b.n; if (a.n >= mod)a.n -= mod; return a; } modint operator-=(modint &a, modint b) { a.n -= b.n; if (a.n < 0)a.n += mod; return a; } modint operator*=(modint &a, modint b) { a.n = ((ll)a.n*b.n) % mod; return a; } modint operator+(modint a, modint b) { return a += b; } modint operator-(modint a, modint b) { return a -= b; } modint operator*(modint a, modint b) { return a *= b; } modint operator^(modint a, int n) { if (n == 0)return modint(1); modint res = (a*a) ^ (n / 2); if (n % 2)res = res * a; return res; } ll inv(ll a, ll p) { return (a == 1 ? 1 : (1 - p * inv(p%a, a)) / a + p); } modint operator/(modint a, modint b) { return a * modint(inv(b, mod)); } const int max_n = 1 << 20; modint fact[max_n], factinv[max_n]; void init_f() { fact[0] = modint(1); for (int i = 0; i < max_n - 1; i++) { fact[i + 1] = fact[i] * modint(i + 1); } factinv[max_n - 1] = modint(1) / fact[max_n - 1]; for (int i = max_n - 2; i >= 0; i--) { factinv[i] = factinv[i + 1] * modint(i + 1); } } modint comb(int a, int b) { if (a < 0 || b < 0 || a < b)return 0; return fact[a] * factinv[b] * factinv[a - b]; } struct edge { int to, cost; }; vector G[2000]; ll dist[3][2000]; void solve() { int n, m, p, q, t; cin >> n >> m >> p >> q >> t; p--; q--; rep(i, m) { int a, b, c; cin >> a >> b >> c; a--; b--; G[a].push_back({ b,c }); G[b].push_back({ a,c }); } vector ids = { 0,p,q }; rep(i, 3) { int s = ids[i]; fill(dist[i], dist[i] + n, INF); priority_queue, greater> q; dist[i][s] = 0; q.push({ 0,s }); while (!q.empty()) { LP p = q.top(); q.pop(); int id = p.second; if (dist[i][id] < p.first)continue; for (edge e : G[id]) { ll nd = e.cost + p.first; if (nd < dist[i][e.to]) { dist[i][e.to] = nd; q.push({ nd,e.to }); } } } } if (dist[0][p] + dist[1][q] + dist[2][0] <= t) { cout << t << "\n"; return; } ll ans = -1; rep(i, n) { if (i == 0 || i == p || i == q)continue; ll sum = 2 * (dist[0][i] + max(dist[1][i], dist[2][i])); if (sum <= t) { ans = max(ans, t - 2 * max(dist[1][i], dist[2][i])); } sum = dist[0][i] + max(dist[1][i] + dist[1][0], dist[2][i] + dist[2][0]); if (sum <= t) { ans = max(ans, t - max(dist[1][i] + dist[1][0], dist[2][i] + dist[2][0])); } } cout << ans << "\n"; } signed main() { //ios::sync_with_stdio(false); //cin.tie(0); //cout << fixed << setprecision(10); //int t; cin >> t; rep(i, t) solve(); stop return 0; }