結果

問題 No.160 最短経路のうち辞書順最小
ユーザー 🐬hec🐬hec
提出日時 2016-07-28 16:32:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 5,000 ms
コード長 1,641 bytes
コンパイル時間 1,757 ms
コンパイル使用メモリ 170,260 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 10:33:55
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

#define _overload(_1,_2,_3,name,...) name
#define _rep(i,n) _range(i,0,n)
#define _range(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload(__VA_ARGS__,_range,_rep,)(__VA_ARGS__)

#define _rrep(i,n) _rrange(i,n,0)
#define _rrange(i,a,b) for(int i=int(a)-1;i>=int(b);--i)
#define rrep(...) _overload(__VA_ARGS__,_rrange,_rrep,)(__VA_ARGS__)

#define _all(arg) begin(arg),end(arg)
#define uniq(arg) sort(_all(arg)),(arg).erase(unique(_all(arg)),end(arg))
#define getidx(ary,key) lower_bound(_all(ary),key)-begin(ary)
#define clr(a,b) memset((a),(b),sizeof(a))
#define bit(n) (1LL<<(n))
#define popcount(n) (__builtin_popcountll(n))

template<class T>bool chmax(T &a, const T &b) { return (a<b)?(a=b,1):0;}
template<class T>bool chmin(T &a, const T &b) { return (b<a)?(a=b,1):0;}

using namespace std;

const int dx[8]={1,0,-1,0,1,-1,-1,1};
const int dy[8]={0,1,0,-1,1,1,-1,-1};
const int inf=1<<28;


int main(void){
	int n,m,s,g;
	cin >> n >> m >> s >> g;


	vector<int> graph[210];
	int edge[210][210],dist[210][210];

	rep(i,n)rep(j,n) edge[i][j]=dist[i][j]=(i==j)?0:inf;

	rep(i,m){
		int a,b,c;
		cin >> a >> b >> c;
		edge[a][b]=edge[b][a]=c;
		dist[a][b]=dist[b][a]=c;
		graph[a].push_back(b);
		graph[b].push_back(a);
	}

	rep(k,n)rep(i,n)rep(j,n) chmin(dist[i][j],dist[i][k]+dist[k][j]);

	vector<int> ans={s};

	int cur=s;
	while(cur!=g){
		sort(_all(graph[cur]));
		for(auto &nxt:graph[cur]){
			if(dist[s][cur]+edge[cur][nxt]+dist[nxt][g]==dist[s][g]){
				ans.push_back(nxt);
				cur=nxt;
				break;
			}
		}
	}


	rep(i,ans.size()) cout << (i?" ":"") << ans[i];
	cout << endl;
	return 0;
}
0