結果
問題 | No.614 壊れたキャンパス |
ユーザー | face4 |
提出日時 | 2019-10-12 17:28:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 461 ms / 2,000 ms |
コード長 | 1,905 bytes |
コンパイル時間 | 1,273 ms |
コンパイル使用メモリ | 96,276 KB |
実行使用メモリ | 39,608 KB |
最終ジャッジ日時 | 2024-05-06 09:03:09 |
合計ジャッジ時間 | 7,268 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 398 ms
38,976 KB |
testcase_09 | AC | 360 ms
37,784 KB |
testcase_10 | AC | 324 ms
37,140 KB |
testcase_11 | AC | 431 ms
39,448 KB |
testcase_12 | AC | 461 ms
39,572 KB |
testcase_13 | AC | 437 ms
39,608 KB |
testcase_14 | AC | 413 ms
39,444 KB |
testcase_15 | AC | 310 ms
37,392 KB |
testcase_16 | AC | 364 ms
38,420 KB |
testcase_17 | AC | 167 ms
33,552 KB |
testcase_18 | AC | 201 ms
36,500 KB |
testcase_19 | AC | 165 ms
33,552 KB |
ソースコード
// 高速化 #include<iostream> #include<vector> #include<algorithm> #include<queue> #include<map> #include<set> using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(false); int n, m, k, s, t; cin >> n >> m >> k >> s >> t; vector<pair<int,int>> sp; sp.push_back({1, s}); sp.push_back({n, t}); vector<int> a(m), b(m), c(m); for(int i = 0; i < m; i++){ cin >> a[i] >> b[i] >> c[i]; sp.push_back({a[i], b[i]}); sp.push_back({a[i]+1, c[i]}); } sort(sp.begin(), sp.end()); sp.erase(unique(sp.begin(),sp.end()),sp.end()); int siz = sp.size(); auto p2id = [&](pair<int,int> p)->int{ return lower_bound(sp.begin(),sp.end(), p)-sp.begin(); }; vector<pair<int,int>> vp[siz]; auto bef = sp.begin(); int id = 1; for(auto it = ++sp.begin(); it != sp.end(); it++){ if(it->first == bef->first){ int diff = it->second-bef->second; vp[id].push_back({id-1, diff}); vp[id-1].push_back({id, diff}); } bef = it; id++; } for(int i = 0; i < m; i++){ int ida = p2id({a[i], b[i]}); int idb = p2id({a[i]+1, c[i]}); vp[ida].push_back({idb, 0}); } int from = p2id({1, s}); int to = p2id({n, t}); vector<ll> dp(siz, 1ll<<60); priority_queue<pair<ll,int>> pq; dp[from] = 0; pq.push({-0, from}); while(!pq.empty()){ auto p = pq.top(); pq.pop(); ll cost = -p.first; int now = p.second; if(dp[now] != cost) continue; for(pair<int,int> edge : vp[now]){ ll ncost = cost + edge.second; if(dp[edge.first] > ncost){ dp[edge.first] = ncost; pq.push({-ncost, edge.first}); } } } cout << (dp[to] == 1ll<<60 ? -1 : dp[to]) << endl; return 0; }