結果
問題 | No.160 最短経路のうち辞書順最小 |
ユーザー | たこし |
提出日時 | 2015-06-08 17:28:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,074 bytes |
コンパイル時間 | 735 ms |
コンパイル使用メモリ | 99,472 KB |
実行使用メモリ | 270,852 KB |
最終ジャッジ日時 | 2024-07-06 14:48:32 |
合計ジャッジ時間 | 7,255 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 6 ms
5,376 KB |
testcase_06 | AC | 8 ms
5,376 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include <vector> #include <list> #include <map> #include <set> #include <deque> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <cctype> #include <string> #include <cstring> #include <ctime> #include <fstream> #include <queue> #include <complex> #define INF_MIN 100000000 #define INF 1145141919 #define INF_MAX 2147483647 #define LL_MAX 9223372036854775807 #define EPS 1e-10 #define PI acos(-1) #define LL long long using namespace std; #define MAX_N 201 #define MAX_M 40001 typedef pair<int, int> P; //distance, next int N, M, S, G; vector<P> Edge[MAX_N]; int dp[MAX_N]; int dpList[MAX_N]; void solve(){ priority_queue<P, vector<P>, greater<P> > que; fill(dp, dp+N, INF); fill(dpList, dpList+N, INF); dp[S] = 0; que.push(P(0, S)); while(que.size()){ P p = que.top(); que.pop(); int dis = p.first; int pos = p.second; if(dp[pos] < dis) continue; for(int i = 0; i < Edge[pos].size(); i++){ int nextPos = Edge[pos][i].second; int nextDis = Edge[pos][i].first; if(dp[nextPos] > dis + nextDis){ dp[nextPos] = dis + nextDis; que.push(P(dp[nextPos], nextPos)); dpList[nextPos] = pos; } else if(dp[nextPos] == dis + nextDis){ if(dpList[nextPos] < pos) continue; que.push(P(dp[nextPos], nextPos)); dpList[nextPos] = pos; } } } } int main(){ cin >> N >> M >> S >> G; for(int i = 0; i < M; i++){ int a, b, c; cin >> a >> b >> c; Edge[a].push_back(P(c, b)); Edge[b].push_back(P(c, a)); } solve(); vector<int> ans; ans.push_back(G); int pos = dpList[G]; while(true){ ans.push_back(pos); if(pos == S) break; pos = dpList[pos]; } reverse(ans.begin(), ans.end()); for(int i = 0; i < ans.size(); i++){ cout << ans[i]; if(i < ans.size() - 1) cout << " "; } cout << endl; return 0; }