結果

問題 No.614 壊れたキャンパス
ユーザー ふーらくたるふーらくたる
提出日時 2017-12-14 21:55:29
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,372 bytes
コンパイル時間 1,480 ms
コンパイル使用メモリ 161,424 KB
実行使用メモリ 94,284 KB
最終ジャッジ日時 2023-08-21 04:47:18
合計ジャッジ時間 9,542 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 12 ms
31,528 KB
testcase_04 WA -
testcase_05 AC 12 ms
31,488 KB
testcase_06 WA -
testcase_07 AC 13 ms
31,484 KB
testcase_08 WA -
testcase_09 AC 922 ms
92,576 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 312 ms
76,848 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using int64 = long long;
using P = pair<int, int>;   // (棟, 階)

const int maxn = 300000;
const int64 inf = (1LL << 60);

map<int, int64> table[maxn];
map<int, vector<int>> G[maxn];

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    int64 N, M, K, S, T;
    cin >> N >> M >> K >> S >> T;

    for (int i = 0; i < M; i++) {
        int a, b, c;
        cin >> a >> b >> c;

        a--;

        G[a][b].push_back(c);
        table[a][b] = inf;
        table[a + 1][c] = inf;
    }

    if (N == 1 and M == 0) {
        cout << abs(S - T) << endl;
        return 0;
    }

    for (auto& mp : table[N - 1]) mp.second = abs(T - mp.first);
    for (int i = N - 1; i >= 0; i--) {
        int64 val = inf;
        for (auto& p : table[i]) {
            for (int to : G[i][p.first]) {
                p.second = min(p.second, table[i + 1][to]);
            }
            p.second = min(p.second, val + p.first);
            val = min(val, p.second - p.first);
        }

        val = inf;
        for (auto it = table[i].rbegin(); it != table[i].rend(); it++) {
            it->second = min(it->second, val - it->first);
            val = min(val, it->second + it->first);
        }
    }

    int64 ans = table[0][S];

    if (ans >= inf / 2) cout << -1 << endl;
    else cout << ans << endl;

    return 0;
}
0