結果
問題 | No.1812 Uribo Road |
ユーザー | siman |
提出日時 | 2022-01-20 04:57:01 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,160 bytes |
コンパイル時間 | 1,380 ms |
コンパイル使用メモリ | 145,016 KB |
実行使用メモリ | 97,976 KB |
最終ジャッジ日時 | 2024-05-02 20:11:00 |
合計ジャッジ時間 | 9,145 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
83,840 KB |
testcase_01 | AC | 61 ms
83,712 KB |
testcase_02 | AC | 62 ms
83,712 KB |
testcase_03 | AC | 82 ms
83,968 KB |
testcase_04 | AC | 59 ms
83,840 KB |
testcase_05 | AC | 59 ms
83,712 KB |
testcase_06 | AC | 60 ms
83,712 KB |
testcase_07 | AC | 61 ms
83,840 KB |
testcase_08 | AC | 90 ms
84,224 KB |
testcase_09 | AC | 126 ms
84,808 KB |
testcase_10 | AC | 81 ms
83,840 KB |
testcase_11 | AC | 72 ms
84,024 KB |
testcase_12 | TLE | - |
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 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <cstring> #include <vector> using namespace std; typedef long long ll; struct Edge { int id; int u; ll cost; int mask; Edge(int id = -1, int u = -1, ll cost = -1) { this->id = id; this->u = u; this->cost = cost; this->mask = 0; } }; vector<Edge> E[10010]; bool visited[2 << 12][10010]; struct Node { int v; int mask; ll cost; Node(int v = -1, int mask = -1, ll cost = -1) { this->v = v; this->mask = mask; this->cost = cost; } bool operator>(const Node &n) const { return cost > n.cost; } }; int main() { int N, M, K; cin >> N >> M >> K; vector<int> R(K); for (int i = 0; i < K; ++i) { cin >> R[i]; } for (int i = 1; i <= M; ++i) { int a, b; ll c; cin >> a >> b >> c; E[a].push_back(Edge(i, b, c)); E[b].push_back(Edge(i, a, c)); } int mid = 0; vector<int> rid(M + 1, -1); for (int v = 1; v <= N; ++v) { for (Edge &e : E[v]) { if (rid[e.id] != -1) continue; for (int k = 0; k < K; ++k) { if (e.id != R[k]) continue; rid[e.id] = mid; ++mid; } } } for (int v = 1; v <= N; ++v) { for (Edge &e : E[v]) { int id = rid[e.id]; if (id == -1) continue; e.mask = 1 << id; } } priority_queue <Node, vector<Node>, greater<Node>> pque; pque.push(Node(1, 0, 0)); memset(visited, false, sizeof(visited)); ll ans = LLONG_MAX; while (not pque.empty()) { Node node = pque.top(); pque.pop(); if (visited[node.mask][node.v]) continue; visited[node.mask][node.v] = true; if (node.v == N && node.mask == (1 << K) - 1) { ans = min(ans, node.cost); continue; } for (Edge &e : E[node.v]) { int nmask = node.mask | e.mask; /* for (int k = 0; k < K; ++k) { if (e.id != R[k]) continue; nmask |= (1 << k); } */ pque.push(Node(e.u, nmask, node.cost + e.cost)); } } cout << ans << endl; return 0; }