//#include #include #include #include #include #include #include #include #include #include #include #define INF 100000000 #define rep(i, a) for (int i = 0; i < (a); i++) using namespace std; typedef pair P; typedef struct edge{ int to; int cost; } edge; vector graph[100010]; int d[2][100010]; void dijkstra(int s){ typedef pair T; //pair<頂点までの距離, チケット残り, 頂点> priority_queue, greater > que; for(int i = 0; i < 100010; i++){ d[0][i] = INF; d[1][i] = INF; } d[1][s] = 0; d[0][s] = 0; que.push(T(0, P(1, s))); que.push(T(0, P(0, s))); while(!que.empty()){ T t = que.top(); que.pop(); int dist = t.first; int state = t.second.first; int v = t.second.second; if(dist > d[state][v]) continue; for(int i = 0; i < graph[v].size(); i++){ edge e = graph[v][i]; if(d[state][e.to] > dist + e.cost){ d[state][e.to] = dist + e.cost; que.push(T(d[state][e.to], P(state, e.to))); } } if(state == 1){ for(int i = 0; i < graph[v].size(); i++){ edge e = graph[v][i]; if(d[0][e.to] > dist + 0){ d[0][e.to] = dist + 0; que.push(T(d[0][e.to], P(0, e.to))); } } } } } int main() { int n, m; cin >> n >> m; for(int i = 0; i < m; i++){ int s, t, c; cin >> s >> t >> c; s--; t--; edge e; e.to = t; e.cost = c; graph[s].push_back(e); e.to = s; e.cost = c; graph[t].push_back(e); } dijkstra(0); for(int i = 0; i < n; i++){ cout << d[0][i] + d[1][i] << endl; } }