結果
問題 | No.614 壊れたキャンパス |
ユーザー | sekiya9311 |
提出日時 | 2017-12-14 21:27:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,277 bytes |
コンパイル時間 | 2,172 ms |
コンパイル使用メモリ | 190,904 KB |
実行使用メモリ | 814,724 KB |
最終ジャッジ日時 | 2024-12-14 13:27:04 |
合計ジャッジ時間 | 19,123 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
25,968 KB |
testcase_01 | AC | 9 ms
62,780 KB |
testcase_02 | AC | 8 ms
26,352 KB |
testcase_03 | AC | 7 ms
26,220 KB |
testcase_04 | AC | 8 ms
26,220 KB |
testcase_05 | AC | 8 ms
25,968 KB |
testcase_06 | AC | 9 ms
19,148 KB |
testcase_07 | AC | 8 ms
19,152 KB |
testcase_08 | AC | 595 ms
32,204 KB |
testcase_09 | AC | 168 ms
38,052 KB |
testcase_10 | AC | 106 ms
24,392 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 546 ms
32,328 KB |
testcase_15 | AC | 78 ms
24,144 KB |
testcase_16 | AC | 208 ms
33,996 KB |
testcase_17 | AC | 131 ms
53,452 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using state = tuple<long long, int, int>; // (cost, tou, kai) const int MAX = 2e5 + 10; int N, M, S, T; long K; vector<pair<int, long long>> G[MAX]; unordered_map<int, long long> mp[MAX]; //[tou][kai] = minCost int main() { scanf("%d%d%lld%d%d", &N, &M, &K, &S, &T); S--;T--;K--; for (int i = 0; i < M; i++) { int a, b, c; scanf("%d%d%d", &a, &b, &c); a--;b--;c--; G[a].emplace_back(b, c); } priority_queue<state, vector<state>, greater<state>> pq; pq.emplace(0, 0, S); const long long inf = 1e18; long long ans = inf; while (!pq.empty()) { long long cost; int tou, kai; tie(cost, tou, kai) = pq.top(); pq.pop(); if (tou == N - 1) { ans = min(ans, cost + llabs(kai - T)); } if (mp[tou].count(kai)) { continue; } mp[tou][kai] = cost; for (auto&& e : G[tou]) { if (mp[tou + 1].count(e.second) && mp[tou + 1][e.second] <= cost + llabs(e.first - kai)) { continue; } pq.emplace(cost + llabs(e.first - kai), tou + 1, e.second); } } cout << (ans == inf ? -1 : ans) << endl; return 0; }