結果

問題 No.614 壊れたキャンパス
ユーザー treeonetreeone
提出日時 2017-12-13 13:28:20
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,421 bytes
コンパイル時間 1,573 ms
コンパイル使用メモリ 171,024 KB
実行使用メモリ 19,892 KB
最終ジャッジ日時 2024-05-08 07:55:59
合計ジャッジ時間 5,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
13,568 KB
testcase_01 AC 5 ms
8,060 KB
testcase_02 AC 5 ms
8,064 KB
testcase_03 AC 4 ms
7,964 KB
testcase_04 AC 4 ms
7,984 KB
testcase_05 AC 4 ms
8,064 KB
testcase_06 AC 5 ms
8,044 KB
testcase_07 AC 5 ms
8,064 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

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;
        assert(1 <= a && a <= n - 1 && 1 <= b && b <= k && 1 <= c && 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){
        cerr << "now " << i << " ,next " << i + 1 << "====================================" << endl;
        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]);
            }
        }
        cerr << "next : " << endl;
        rep(j, 0, next.size()){
            cerr <<next[j].first << " " << next[j].second << endl;
        }
        pre.clear();
        cerr << "make pre : " << endl;
        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));
            cerr << d[i][j].first << " " << d[i][j].second << " " << cost << endl;
        }
        sort(all(pre));
        cerr << "pre : " << endl;        
        rep(j, 0, pre.size()){
            cerr << pre[j].first << " " << pre[j].second << endl;
        }
    }
    cout << (pre[0].second == INF ? -1 : pre[0].second) << endl;
}
0