結果
問題 | No.1812 Uribo Road |
ユーザー | MasKoaTS |
提出日時 | 2021-12-31 14:58:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 220 ms / 5,000 ms |
コード長 | 2,161 bytes |
コンパイル時間 | 1,214 ms |
コンパイル使用メモリ | 94,704 KB |
実行使用メモリ | 9,216 KB |
最終ジャッジ日時 | 2024-10-08 12:13:41 |
合計ジャッジ時間 | 4,635 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 10 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 3 ms
6,816 KB |
testcase_08 | AC | 4 ms
6,820 KB |
testcase_09 | AC | 7 ms
6,816 KB |
testcase_10 | AC | 3 ms
6,816 KB |
testcase_11 | AC | 5 ms
6,820 KB |
testcase_12 | AC | 77 ms
8,448 KB |
testcase_13 | AC | 30 ms
8,320 KB |
testcase_14 | AC | 29 ms
8,320 KB |
testcase_15 | AC | 103 ms
6,820 KB |
testcase_16 | AC | 53 ms
6,820 KB |
testcase_17 | AC | 187 ms
7,424 KB |
testcase_18 | AC | 69 ms
7,552 KB |
testcase_19 | AC | 220 ms
9,216 KB |
testcase_20 | AC | 220 ms
9,216 KB |
testcase_21 | AC | 202 ms
9,168 KB |
testcase_22 | AC | 184 ms
9,216 KB |
testcase_23 | AC | 5 ms
6,820 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 35 ms
6,820 KB |
testcase_26 | AC | 5 ms
6,816 KB |
testcase_27 | AC | 50 ms
6,820 KB |
testcase_28 | AC | 54 ms
6,816 KB |
testcase_29 | AC | 1 ms
6,816 KB |
testcase_30 | AC | 9 ms
6,820 KB |
testcase_31 | AC | 127 ms
7,688 KB |
testcase_32 | AC | 3 ms
6,816 KB |
testcase_33 | AC | 76 ms
7,552 KB |
ソースコード
#include <iostream> #include <vector> #include <queue> #define rep(i, l, n) for (int i = (l); i < (n); i++) using namespace std; using Pair = pair<int, int>; template <class T> using V = vector<T>; template <class T> using VV = V<V<T> >; const int inf = 2000000000; VV<int> dijkstra(int n, VV<int>& edge, V<int>& R, VV<Pair>& route) { VV<int> dist(n, V<int>(0)); V<int> st = { 0,n - 1 }; rep(i, 0, R.size()) { st.push_back(edge[R[i]][0]); st.push_back(edge[R[i]][1]); } rep(i, 0, st.size()) { int k = st[i]; V<int> di(n, -1); priority_queue<Pair, V<Pair>, greater<Pair> > pq; pq.push({ 0,k }); int cnt = 0; while (pq.size() && cnt < n) { Pair p = pq.top(); pq.pop(); int d = p.first; int v = p.second; if (di[v] == -1) { cnt++; di[v] = d; rep(j, 0, route[v].size()) { Pair p = { d + route[v][j].second,route[v][j].first }; pq.push(p); } } } dist[k] = di; } return dist; } int main(void) { int N, M, K; cin >> N >> M >> K; V<int> R(K); rep(i, 0, K) { cin >> R[i]; R[i] -= 1; } VV<int> edge(M, V<int>(3)); VV<Pair> route(N, V<Pair>(0)); rep(i, 0, M) { rep(j, 0, 3) { cin >> edge[i][j]; } edge[i][0] -= 1; edge[i][1] -= 1; route[edge[i][0]].push_back({ edge[i][1],edge[i][2] }); route[edge[i][1]].push_back({ edge[i][0],edge[i][2] }); } VV<int> dist = dijkstra(N, edge, R, route); V<VV<int> > dp(1 << K, VV<int>(K, V<int>(2, inf))); rep(i, 0, K) { rep(j, 0, 2) { dp[1 << i][i][j] = dist[0][edge[R[i]][j ^ 1]] + edge[R[i]][2]; } } rep(bit, 1, 1 << K) { rep(s, 0, K) { if ((bit & (1 << s)) == 0) { continue; } rep(t, 0, K) { if (bit & (1 << t)) { continue; } int b = bit | (1 << t); int c = edge[R[t]][2]; rep(x, 0, 2) { rep(y, 0, 2) { int p = edge[R[s]][x]; int q = edge[R[t]][y ^ 1]; int d = dp[bit][s][x] + dist[p][q] + c; if (dp[b][t][y] > d) { dp[b][t][y] = d; } } } } } } int ans = inf; rep(i, 0, K) { rep(j, 0, 2) { int d = dp[(1 << K) - 1][i][j] + dist[edge[R[i]][j]][N - 1]; if (ans > d) { ans = d; } } } cout << ans << endl; return 0; }