結果

問題 No.614 壊れたキャンパス
ユーザー treeonetreeone
提出日時 2017-12-14 10:51:30
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 1,827 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 207,312 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2023-08-21 04:08:26
合計ジャッジ時間 4,659 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,348 KB
testcase_01 AC 4 ms
7,992 KB
testcase_02 AC 4 ms
8,104 KB
testcase_03 AC 5 ms
7,996 KB
testcase_04 AC 5 ms
7,980 KB
testcase_05 AC 4 ms
8,180 KB
testcase_06 AC 4 ms
8,040 KB
testcase_07 AC 5 ms
8,112 KB
testcase_08 AC 77 ms
13,092 KB
testcase_09 AC 94 ms
17,408 KB
testcase_10 AC 112 ms
13,176 KB
testcase_11 AC 80 ms
12,416 KB
testcase_12 AC 94 ms
12,568 KB
testcase_13 AC 82 ms
12,568 KB
testcase_14 AC 84 ms
13,124 KB
testcase_15 AC 88 ms
13,184 KB
testcase_16 AC 82 ms
13,852 KB
testcase_17 AC 94 ms
14,252 KB
testcase_18 AC 72 ms
16,084 KB
testcase_19 AC 69 ms
15,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
    rep(i, 0, m){
        int a, b, c;
        cin >> a >> b >> c;
        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;
}
0