結果
問題 | No.614 壊れたキャンパス |
ユーザー | tsutaj |
提出日時 | 2017-12-14 00:36:53 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,176 bytes |
コンパイル時間 | 1,653 ms |
コンパイル使用メモリ | 124,100 KB |
実行使用メモリ | 200,000 KB |
最終ジャッジ日時 | 2024-12-14 10:31:33 |
合計ジャッジ時間 | 24,948 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
14,996 KB |
testcase_01 | AC | 4 ms
15,076 KB |
testcase_02 | AC | 4 ms
14,980 KB |
testcase_03 | WA | - |
testcase_04 | AC | 3 ms
14,892 KB |
testcase_05 | AC | 5 ms
14,988 KB |
testcase_06 | AC | 4 ms
14,932 KB |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | AC | 522 ms
27,476 KB |
testcase_10 | AC | 248 ms
13,296 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 180 ms
13,100 KB |
testcase_16 | AC | 717 ms
28,312 KB |
testcase_17 | AC | 373 ms
45,608 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; 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)); } queue<pii> que; que.push(make_pair(1, S)); while(!que.empty()) { pii cur = que.front(); que.pop(); int idx = cur.first, flr = cur.second; for(auto e : edges[idx]) { int cur_flr = e.first, nxt_flr = e.second; int cost = abs(flr - cur_flr); // printf("cur_flr = %lld, nxt_flr = %lld, cost = %lld\n", cur_flr, nxt_flr, cost); if(!rec[idx+1].count(nxt_flr) || rec[idx+1][nxt_flr] > rec[idx][flr] + cost) { rec[idx+1][nxt_flr] = rec[idx][flr] + cost; que.push(make_pair(idx+1, nxt_flr)); } } } 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; }