#include using namespace std; typedef long long int ll; typedef unsigned long long ull; mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); ll myRand(ll B) { return (ull)rng() % B; } constexpr ll mod=1e9+7; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n,m; cin >> n >> m; vector>> v(n); for(int i=0;i> a >> b >> y; a--; b--; v[a].push_back({b,y}); v[b].push_back({a,y}); } vector res(n,-1); queue q; for(int i=0;i