結果

問題 No.160 最短経路のうち辞書順最小
ユーザー koyumeishikoyumeishi
提出日時 2015-03-02 03:05:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 1,726 bytes
コンパイル時間 762 ms
コンパイル使用メモリ 86,060 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-06 06:20:41
合計ジャッジ時間 2,007 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 2 ms
4,384 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 4 ms
4,384 KB
testcase_05 AC 6 ms
4,384 KB
testcase_06 AC 8 ms
4,380 KB
testcase_07 AC 3 ms
4,380 KB
testcase_08 AC 3 ms
4,380 KB
testcase_09 AC 2 ms
4,384 KB
testcase_10 AC 2 ms
4,384 KB
testcase_11 AC 3 ms
4,380 KB
testcase_12 AC 3 ms
4,384 KB
testcase_13 AC 3 ms
4,380 KB
testcase_14 AC 3 ms
4,384 KB
testcase_15 AC 3 ms
4,380 KB
testcase_16 AC 3 ms
4,380 KB
testcase_17 AC 3 ms
4,384 KB
testcase_18 AC 3 ms
4,380 KB
testcase_19 AC 3 ms
4,384 KB
testcase_20 AC 2 ms
4,384 KB
testcase_21 AC 3 ms
4,384 KB
testcase_22 AC 3 ms
4,380 KB
testcase_23 AC 3 ms
4,384 KB
testcase_24 AC 3 ms
4,380 KB
testcase_25 AC 3 ms
4,384 KB
testcase_26 AC 3 ms
4,384 KB
testcase_27 AC 1 ms
4,384 KB
testcase_28 AC 12 ms
4,384 KB
testcase_29 AC 1 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <cmath>
#include <set>
using namespace std;

typedef struct{
	int to;
	int cost;
}edge;


//distance from s
//O(E log V)
void dijkstra(vector< vector<edge> > &G, vector<int> &dist, vector<int> &last, int s){

	//INF as distance
	const int INF = 1<<29;
	
	//first : distance from s, second : its vertex
	priority_queue< pair<int, int> , vector< pair<int, int>  >, greater< pair<int, int> >> pq;
	 
	fill(dist.begin(), dist.end(), INF);
	dist[s] = 0;
	last[s] = s;

	pq.push( {dist[s], s} );

	while(!pq.empty()){
		auto q = pq.top();
		pq.pop();

		int from = q.second;
		if(dist[from] < q.first) continue; // it's not minimum distance

		int n=G[from].size();
		for(int i=0; i<n; i++){
			edge& e = G[from][i];
			int next = dist[from] + e.cost;

			if(dist[e.to] == next){
				last[e.to] = min(last[e.to], from);
			}else if(dist[e.to] > next){
				dist[e.to] = next;
				last[e.to] = from;
				pq.push( {dist[e.to], e.to} );
			}
		}
	}
}
 
void add_edge(vector<vector<edge> > &G, int from, int to, int cost){
	G[from].push_back( (edge){to, cost} );
	G[to].push_back( (edge){from, cost} );
}
 
int main(){
	int N,M,S,G;
	cin >> N >> M >> S >> G;

	vector<vector<edge>> Graph(N);
	for(int i=0; i<M; i++){
		int a,b,c;
		cin >> a >> b >> c;

		add_edge(Graph, a, b, c);
	}

	vector<int> dist(N);
	vector<int> last(N, -1);
	dijkstra(Graph, dist, last, G);
	vector<int> ans;
	{
		for(int pos = S; pos != last[pos]; pos = last[pos]){
			ans.push_back(pos);
		}
		ans.push_back(G);
	}
	for(int i=0; i<ans.size(); i++){
		cout << ans[i] << " ";
	}
	cout << endl;

	return 0;
}
0