結果
問題 | No.614 壊れたキャンパス |
ユーザー | tsutaj |
提出日時 | 2017-12-14 00:43:52 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,234 bytes |
コンパイル時間 | 1,451 ms |
コンパイル使用メモリ | 123,352 KB |
実行使用メモリ | 131,116 KB |
最終ジャッジ日時 | 2024-12-14 10:34:30 |
合計ジャッジ時間 | 23,245 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
15,024 KB |
testcase_01 | AC | 5 ms
15,072 KB |
testcase_02 | AC | 5 ms
14,928 KB |
testcase_03 | AC | 5 ms
23,708 KB |
testcase_04 | AC | 2 ms
14,912 KB |
testcase_05 | AC | 5 ms
24,072 KB |
testcase_06 | AC | 5 ms
14,920 KB |
testcase_07 | AC | 3 ms
131,116 KB |
testcase_08 | AC | 1,978 ms
32,980 KB |
testcase_09 | AC | 423 ms
29,208 KB |
testcase_10 | AC | 260 ms
13,364 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 171 ms
13,200 KB |
testcase_16 | AC | 494 ms
28,308 KB |
testcase_17 | AC | 351 ms
45,728 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
ソースコード
// 基本テンプレート #include <iostream> #include <iomanip> #include <cstdio> #include <string> #include <cstring> #include <deque> #include <list> #include <queue> #include <stack> #include <vector> #include <utility> #include <algorithm> #include <map> #include <set> #include <complex> #include <cmath> #include <limits> #include <cfloat> #include <climits> #include <ctime> #include <cassert> #include <numeric> #include <fstream> #include <functional> using namespace std; #define rep(i,a,n) for(int (i)=(a); (i)<(n); (i)++) #define repq(i,a,n) for(int (i)=(a); (i)<=(n); (i)++) #define repr(i,a,n) for(int (i)=(a); (i)>=(n); (i)--) #define int long long int template<typename T> void chmax(T &a, T b) {a = max(a, b);} template<typename T> void chmin(T &a, T b) {a = min(a, b);} template<typename T> void chadd(T &a, T b) {a = a + b;} typedef pair<int, int> pii; typedef long long ll; int dx[] = {0, 0, 1, -1}; int dy[] = {1, -1, 0, 0}; constexpr ll INF = 1001001001001001LL; constexpr ll MOD = 1000000007LL; vector<pii> edges[200010]; map< int, map<int, int> > rec; struct Elem { int idx, flr, cost; bool operator<(const Elem &x) const { return cost > x.cost; } }; signed main() { int N, M, K, S, T; cin >> N >> M >> K >> S >> T; rep(i,0,M) { int a, b, c; cin >> a >> b >> c; edges[a].push_back(make_pair(b, c)); } priority_queue<Elem> que; que.push(Elem{1, S, 0}); rec[1][S] = 0; while(!que.empty()) { Elem cur = que.top(); que.pop(); int idx = cur.idx, flr = cur.flr, cost = cur.cost; for(auto e : edges[idx]) { int cur_flr = e.first, nxt_flr = e.second; int dist = abs(flr - cur_flr); if(!rec[idx+1].count(nxt_flr) || rec[idx+1][nxt_flr] > cost + dist) { int ncost = rec[idx+1][nxt_flr] = cost + dist; que.push(Elem{idx+1, nxt_flr, ncost}); } } } int ans = INF; for(auto x : rec[N]) { int flr = x.first, cost = x.second; // printf("flr = %lld, cost = %lld\n", flr, cost); chmin(ans, cost + abs(flr - T)); } if(ans == INF) cout << -1 << endl; else cout << ans << endl; return 0; }