結果
問題 | No.614 壊れたキャンパス |
ユーザー | zimpha |
提出日時 | 2017-12-14 00:13:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,571 bytes |
コンパイル時間 | 1,153 ms |
コンパイル使用メモリ | 86,408 KB |
実行使用メモリ | 76,288 KB |
最終ジャッジ日時 | 2024-05-08 08:01:25 |
合計ジャッジ時間 | 5,224 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
22,784 KB |
testcase_01 | AC | 12 ms
17,152 KB |
testcase_02 | AC | 13 ms
17,280 KB |
testcase_03 | AC | 13 ms
17,152 KB |
testcase_04 | WA | - |
testcase_05 | AC | 12 ms
17,280 KB |
testcase_06 | WA | - |
testcase_07 | AC | 12 ms
17,280 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <cstdio> #include <vector> #include <map> #include <queue> #include <algorithm> using pii = std::pair<int, int>; using int64 = long long; const int N = 2e5 + 10; std::map<int, int> id[N]; std::vector<int> use[N]; int n, m, k, s, t, sz; int main() { scanf("%d%d%d%d%d", &n, &m, &k, &s, &t); std::vector<int> a(m), b(m), c(m); id[0][s] = 0; id[n - 1][t] = 1; sz = 2; for (int i = 0; i < m; ++i) { scanf("%d%d%d", &a[i], &b[i], &c[i]); --a[i]; if (!id[a[i]].count(b[i])) id[a[i]][b[i]] = sz++; if (!id[a[i] + 1].count(c[i])) id[a[i] + 1][c[i]] = sz++; } std::vector<std::vector<pii>> edges(sz); for (int i = 0; i < m; ++i) { int u = id[a[i]][b[i]]; int v = id[a[i] + 1][c[i]]; edges[u].emplace_back(v, 0); edges[v].emplace_back(u, 0); } for (int i = 0; i < n; ++i) { int u = -1, d = -1; for (auto &&e: id[i]) { if (u != -1) { int v = e.second; d = e.first - d; edges[u].emplace_back(v, d); edges[v].emplace_back(u, d); } std::tie(d, u) = e; } } std::vector<bool> mark(sz); std::vector<int64> dis(sz, -1); std::queue<int> queue; dis[0] = 0; queue.push(0); while (!queue.empty()) { int u = queue.front(); queue.pop(); mark[u] = 0; for (auto &&e: edges[u]) { int v = e.first, w = e.second; if (dis[v] == -1 || dis[v] > dis[u] + w) { dis[v] = dis[u] + w; if (!mark[v]) { mark[v] = true; queue.push(v); } } } } printf("%lld\n", dis[1]); return 0; }