結果

問題 No.614 壊れたキャンパス
ユーザー finefine
提出日時 2017-12-14 04:23:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 2,124 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 189,228 KB
実行使用メモリ 30,092 KB
最終ジャッジ日時 2024-05-08 08:35:04
合計ジャッジ時間 5,620 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 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 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 145 ms
6,144 KB
testcase_09 AC 367 ms
30,092 KB
testcase_10 AC 96 ms
10,776 KB
testcase_11 AC 186 ms
5,632 KB
testcase_12 AC 195 ms
5,632 KB
testcase_13 AC 185 ms
5,632 KB
testcase_14 AC 150 ms
6,068 KB
testcase_15 AC 74 ms
8,320 KB
testcase_16 AC 135 ms
7,296 KB
testcase_17 AC 108 ms
14,204 KB
testcase_18 AC 263 ms
18,040 KB
testcase_19 AC 289 ms
18,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;
using P = pair<int, int>;

const ll INF = 1000000000000000LL;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N, M, K, S, T;
    cin >> N >> M >> K >> S >> T;
    S--;
    T--;
    vector< vector<P> > g(N);
    for (int i = 0; i < M; i++) {
        int a, b, c;
        cin >> a >> b >> c;
        a--;
        b--;
        c--;
        g[a].emplace_back(b, c);
    }

    for (int i = 0; i < N - 1; i++) {
        sort(g[i].begin(), g[i].end());
    }
    map<int, ll> memo;
    memo[S] = 0;
    for (int i = 0; i < N - 1; i++) {
        vector<int> hoge;
        for (auto& p : memo) hoge.push_back(p.first);
        vector<int> foo;
        for (P& p : g[i]) {
            foo.push_back(p.first);
        }
        foo.erase(unique(foo.begin(), foo.end()), foo.end());
        int sz = foo.size();
        ll val = INF;
        map<int, ll> tmp;
        for (int i = 0, j = 0; i < sz; i++) {
            while (j < hoge.size()) {
                if (hoge[j] > foo[i]) break;
                val = min(val, memo[hoge[j]] - hoge[j]);
                j++;
            }
            if (val < INF) tmp[foo[i]] = val + foo[i];
        }

        val = INF;
        for (int i = sz - 1, j = (int)hoge.size() - 1; i >= 0; i--) {
            while (j >= 0) {
                if (hoge[j] < foo[i]) break;
                val = min(val, memo[hoge[j]] + hoge[j]);
                j--;
            }
            if (val < INF) {
                if (tmp.find(foo[i]) == tmp.end()) tmp[foo[i]] = val - foo[i];
                else tmp[foo[i]] = min(tmp[foo[i]], val - foo[i]);
            }
        }

        memo.clear();
        for (P& p : g[i]) {
            if (tmp.find(p.first) == tmp.end()) continue;
            if (memo.find(p.second) == memo.end()) memo[p.second] = tmp[p.first];
            else memo[p.second] = min(memo[p.second], tmp[p.first]);
        }
    }

    ll ans = INF;
    for (auto& p : memo) {
        ans = min(ans, p.second + abs(p.first - T));
    }
    cout << (ans == INF ? -1 : ans) << endl;
    return 0;
}
0