結果

問題 No.807 umg tours
ユーザー Jiro_tech15Jiro_tech15
提出日時 2019-03-22 23:27:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 633 ms / 4,000 ms
コード長 1,509 bytes
コンパイル時間 869 ms
コンパイル使用メモリ 92,244 KB
実行使用メモリ 44,432 KB
最終ジャッジ日時 2024-05-02 23:33:12
合計ジャッジ時間 8,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,140 KB
testcase_01 AC 4 ms
7,908 KB
testcase_02 AC 4 ms
8,252 KB
testcase_03 AC 4 ms
8,156 KB
testcase_04 AC 4 ms
8,204 KB
testcase_05 AC 4 ms
8,136 KB
testcase_06 AC 4 ms
8,900 KB
testcase_07 AC 4 ms
8,644 KB
testcase_08 AC 3 ms
9,416 KB
testcase_09 AC 4 ms
8,388 KB
testcase_10 AC 3 ms
8,200 KB
testcase_11 AC 339 ms
35,800 KB
testcase_12 AC 335 ms
26,124 KB
testcase_13 AC 471 ms
34,680 KB
testcase_14 AC 192 ms
19,496 KB
testcase_15 AC 148 ms
16,912 KB
testcase_16 AC 494 ms
36,468 KB
testcase_17 AC 632 ms
40,756 KB
testcase_18 AC 633 ms
41,776 KB
testcase_19 AC 599 ms
39,164 KB
testcase_20 AC 354 ms
22,916 KB
testcase_21 AC 366 ms
23,492 KB
testcase_22 AC 147 ms
14,916 KB
testcase_23 AC 111 ms
13,324 KB
testcase_24 AC 337 ms
33,904 KB
testcase_25 AC 614 ms
44,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>
#include <string>
#include <math.h>
#include <iomanip>
#include <limits>
#include <list>
#include <queue>
#include <tuple>
#include <map>
using namespace std;
#define MOD (long long int)(1e9+7)
#define ll long long int
#define rep(i,n) for(int i=0; i<(int)(n); i++)
#define reps(i,n) for(int i=1; i<=(int)(n); i++)
#define REP(i,n) for(int i=n-1; i>=0; i--)
#define REPS(i,n) for(int i=n; i>0; i--)
#define INF (int)(1123456789)
#define LINF (long long int)(112345678901234567)
#define MAX_V 200005
//lower_bound使え

struct edge{int to; ll cost;};
typedef pair<ll, int> P;//最短距離、頂点番号

int V;
vector<edge> G[MAX_V];
ll d[MAX_V];

void dijkstra(int s){
	priority_queue<P, vector<P>, greater<P> > que;
	fill(d,d+V,LINF);
	d[s] = 0;
	que.push(P(0,s));

	while(!que.empty()){
		P p = que.top(); que.pop();
		int v = p.second;
		if(d[v] < p.first) continue;
		rep(i, G[v].size()){
			edge e = G[v][i];
			if(d[e.to] > d[v] + e.cost){
				d[e.to] = d[v] + e.cost;
				que.push(P(d[e.to], e.to));
			}
		}
	}
}

int main(void){
	int n,m,a,b;
	ll c;
	cin>>n>>m;
	V = 2*n+1;
	rep(i,m){
		cin>>a>>b>>c;
		G[a].push_back((edge){b,c});
		G[b].push_back((edge){a,c});
		G[a].push_back((edge){b+n,0});
		G[b].push_back((edge){a+n,0});
		G[a+n].push_back((edge){b+n,c});
		G[b+n].push_back((edge){a+n,c});
	}
	dijkstra(1);

	reps(i,n){
		if(i==1){
			cout<<0<<endl;
			continue;
		}
		cout<<d[i]+d[i+n]<<endl;
	}
	return 0;

}
0