結果
問題 | No.160 最短経路のうち辞書順最小 |
ユーザー | togatoga |
提出日時 | 2015-04-04 17:01:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 14 ms / 5,000 ms |
コード長 | 1,806 bytes |
コンパイル時間 | 1,387 ms |
コンパイル使用メモリ | 168,132 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 01:58:08 |
合計ジャッジ時間 | 2,254 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 6 ms
5,376 KB |
testcase_05 | AC | 9 ms
5,376 KB |
testcase_06 | AC | 12 ms
5,376 KB |
testcase_07 | AC | 6 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 7 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 5 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 6 ms
5,376 KB |
testcase_17 | AC | 4 ms
5,376 KB |
testcase_18 | AC | 4 ms
5,376 KB |
testcase_19 | AC | 7 ms
5,376 KB |
testcase_20 | AC | 5 ms
5,376 KB |
testcase_21 | AC | 3 ms
5,376 KB |
testcase_22 | AC | 3 ms
5,376 KB |
testcase_23 | AC | 5 ms
5,376 KB |
testcase_24 | AC | 6 ms
5,376 KB |
testcase_25 | AC | 3 ms
5,376 KB |
testcase_26 | AC | 5 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 14 ms
5,376 KB |
testcase_29 | AC | 1 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define mp make_pair #define mt make_tuple #define pb push_back #define rep(i, n) for (int i = 0; i < (n); i++) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> pii; typedef pair<long, long> pll; const int INF = 1 << 29; const double EPS = 1e-9; const int MOD = 100000007; const int dx[] = {1, 0, -1, 0}, dy[] = {0, -1, 0, 1}; struct edge{ int b,c; edge(int _b, int _c){ b = _b; c = _c; } bool operator < (const edge& e) { return this->c < e.c; } }; struct state{ int pos, cost; state(int _pos, int _cost){ pos = _pos; cost = _cost; } bool operator < (const state& s) const { return this->cost < s.cost; } }; vector<edge> edges[220]; int d[220]; int N,M,S,G; int path[220]; void dijkstra(int s){ fill(path , path + N, INF); fill(d, d + N, INF); d[s] = 0; priority_queue<state> que; que.push(state(s, 0)); while (!que.empty()){ state p = que.top(); que.pop(); int v = p.pos; if (d[v] < p.cost)continue; for (int i = 0; i < edges[v].size(); i++){ edge e = edges[v][i]; if (d[e.b] > d[v] + e.c){ d[e.b] = d[v] + e.c; path[e.b] = v; que.push(state(e.b, d[e.b])); } else if(d[e.b] == d[v] + e.c){ path[e.b] = min(path[e.b], v); } } } } int main() { cin >> N >> M >> S >> G; for (int i = 0; i < M; i++){ int a,b,c; cin >> a >> b >> c; edges[a].push_back(edge(b, c)); edges[b].push_back(edge(a, c)); } dijkstra(G); vector<int > res; int p = S; while (p != G){ res.push_back(p); p = path[p]; } res.push_back(G); // reverse(res.begin(), res.end()); for (int i = 0; i < res.size(); i++){ cout << res[i] << " "; } cout << endl; return 0; }