結果

問題 No.160 最短経路のうち辞書順最小
ユーザー Yang33Yang33
提出日時 2019-07-05 00:38:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 2,257 bytes
コンパイル時間 2,490 ms
コンパイル使用メモリ 179,676 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-19 11:09:52
合計ジャッジ時間 3,531 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using VS = vector<string>;    using LL = long long;
using VI = vector<int>;       using VVI = vector<VI>;
using PII = pair<int, int>;   using PLL = pair<LL, LL>;
using VL = vector<LL>;        using VVL = vector<VL>;

#define ALL(a)  begin((a)),end((a))
#define RALL(a) (a).rbegin(), (a).rend()
#define SZ(a) int((a).size())
#define SORT(c) sort(ALL((c)))
#define RSORT(c) sort(RALL((c)))
#define UNIQ(c) (c).erase(unique(ALL((c))), end((c)))
#define FOR(i, s, e) for (int(i) = (s); (i) < (e); (i)++)
#define FORR(i, s, e) for (int(i) = (s); (i) > (e); (i)--)
//#pragma GCC optimize ("-O3") 
#ifdef YANG33
#include "mydebug.hpp"
#else
#define DD(x) 
#endif
const int INF = 1e9;                          const LL LINF = 1e16;
const LL MOD = 1000000007;                    const double PI = acos(-1.0);


// Etp(Vtp,+), Vtp(>,==)
template<typename Etp, typename Vtp>
VI DijkstraPath(vector<vector<pair<int, Etp>>>& G, int s, int t,
	Vtp init, Vtp inf,
	bool dictmin = 0) {
	if (dictmin)swap(s, t);
	vector<Vtp> dist(SZ(G), inf);
	VI rev(SZ(G), -1);
	priority_queue<pair<Vtp, int>, vector<pair<Vtp, int>>, greater<pair<Vtp, int>>> que;
	dist[s] = init;
	que.push(pair<Vtp, int>(init, s));

	while (!que.empty()) {
		PLL p = que.top(); que.pop();
		int v; Vtp d; tie(d, v) = p;
		if (d > dist[v]) continue;
		FOR(i, 0, (int)G[v].size()) {
			int nv = G[v][i].first;
			if (dist[nv] > dist[v] + G[v][i].second) {
				dist[nv] = dist[v] + G[v][i].second;
				rev[nv] = v;
				DD(de(nv, v));
				que.push(pair<Vtp,int>(dist[nv], nv));
			}
			else if (dictmin && dist[nv] == dist[v] + G[v][i].second) {
				if (rev[nv] > v) {
					rev[nv] = v;
				}
			}
		}
	}
	int cur = t;
	VI path{ t };
	while (cur != s) {
		cur = rev[cur]; path.push_back(cur);
	}

	return path;
}


void solve_yukicoder_160() {
	cin.tie(0);
	ios_base::sync_with_stdio(false);

	int N, M, S, T;
	cin >> N >> M >> S >> T;
	vector<vector<PII>> G(N);
	FOR(i, 0, M) {
		int a, b, c; cin >> a >> b >> c;
		G[a].push_back(PII(b, c));
		G[b].push_back(PII(a, c));
	}
	VI path = DijkstraPath<int, int>(G, S, T, 0, INF, 1);
	FOR(i, 0, SZ(path)) {
		cout << path[i] << " \n"[i == SZ(path) - 1];
	}

}


int main() {
	 solve_yukicoder_160();


	return 0;
}
0