結果
問題 | No.614 壊れたキャンパス |
ユーザー | treeone |
提出日時 | 2017-12-13 21:49:48 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 355 ms / 2,000 ms |
コード長 | 2,238 bytes |
コンパイル時間 | 1,734 ms |
コンパイル使用メモリ | 173,936 KB |
実行使用メモリ | 29,792 KB |
最終ジャッジ日時 | 2024-05-08 07:59:23 |
合計ジャッジ時間 | 6,333 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,916 KB |
testcase_01 | AC | 4 ms
8,024 KB |
testcase_02 | AC | 5 ms
8,064 KB |
testcase_03 | AC | 4 ms
7,936 KB |
testcase_04 | AC | 5 ms
8,020 KB |
testcase_05 | AC | 4 ms
8,064 KB |
testcase_06 | AC | 5 ms
8,072 KB |
testcase_07 | AC | 4 ms
7,984 KB |
testcase_08 | AC | 319 ms
25,344 KB |
testcase_09 | AC | 298 ms
29,792 KB |
testcase_10 | AC | 355 ms
25,976 KB |
testcase_11 | AC | 339 ms
24,808 KB |
testcase_12 | AC | 352 ms
24,904 KB |
testcase_13 | AC | 306 ms
24,860 KB |
testcase_14 | AC | 325 ms
25,216 KB |
testcase_15 | AC | 329 ms
25,856 KB |
testcase_16 | AC | 330 ms
26,228 KB |
testcase_17 | AC | 186 ms
26,752 KB |
testcase_18 | AC | 162 ms
28,636 KB |
testcase_19 | AC | 158 ms
27,956 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, a, n) for(int i = a; i < n; i++) #define all(a) a.begin(), a.end() #define int long long #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) using namespace std; typedef pair<int, int> P; const int INF = 1e18; int n, m, k, s, t; vector<P> d[200010]; signed main(){ ios::sync_with_stdio(false); cin.tie(0); cin >> n >> m >> k >> s >> t; assert(1 <= n && n <= 2*1e5); assert(0 <= m && m <= 2*1e5); assert(1 <= k && k <= 1e9); assert(1 <= s && s <= k); assert(1 <= t && t <= k); set<pair<int, P> > st; rep(i, 0, m){ int a, b, c; cin >> a >> b >> c; if(st.count(pair<int, P>(a, P(b, c)))) assert(0); st.insert(pair<int, P>(a, P(b, c))); assert(1 <= a and a <= n - 1); assert(1 <= b and b <= k); assert(1 <= c and c <= k); a--; d[a].push_back(P(b, c)); } vector<P> pre; pre.push_back(P(s, 0)); d[n - 1].push_back(P(t, -1)); rep(i, 0, n){ vector<P> next; rep(j, 0, pre.size()){ if(next.size()){ P p = next.back(); if(p.second + abs(p.first - pre[j].first) <= pre[j].second){ continue; } } while(next.size()){ P p = next.back(); if(p.second > pre[j].second + abs(p.first - pre[j].first)){ next.pop_back(); }else{ next.push_back(pre[j]); break; } } if(next.size() == 0){ next.push_back(pre[j]); } } pre.clear(); rep(j, 0, d[i].size()){ int cost = INF; int idx = upper_bound(all(next), P(d[i][j].first, 0)) - next.begin(); if(idx != next.size()) chmin(cost, next[idx].second + abs(next[idx].first - d[i][j].first)); idx--; if(idx != -1) chmin(cost, next[idx].second + abs(next[idx].first - d[i][j].first)); pre.push_back(P(d[i][j].second, cost)); } sort(all(pre)); } cout << (pre[0].second == INF ? -1 : pre[0].second) << endl; }