結果

問題 No.614 壊れたキャンパス
ユーザー ふーらくたるふーらくたる
提出日時 2017-12-13 22:12:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 894 ms / 2,000 ms
コード長 1,820 bytes
コンパイル時間 674 ms
コンパイル使用メモリ 79,568 KB
実行使用メモリ 94,012 KB
最終ジャッジ日時 2023-08-21 02:28:56
合計ジャッジ時間 8,526 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
31,704 KB
testcase_01 AC 13 ms
31,476 KB
testcase_02 AC 13 ms
31,548 KB
testcase_03 AC 13 ms
31,516 KB
testcase_04 AC 14 ms
31,488 KB
testcase_05 AC 13 ms
31,520 KB
testcase_06 AC 12 ms
31,532 KB
testcase_07 AC 14 ms
31,484 KB
testcase_08 AC 574 ms
92,772 KB
testcase_09 AC 894 ms
92,608 KB
testcase_10 AC 487 ms
94,012 KB
testcase_11 AC 678 ms
93,564 KB
testcase_12 AC 689 ms
93,428 KB
testcase_13 AC 679 ms
93,748 KB
testcase_14 AC 580 ms
93,952 KB
testcase_15 AC 479 ms
93,672 KB
testcase_16 AC 515 ms
93,392 KB
testcase_17 AC 192 ms
93,988 KB
testcase_18 AC 309 ms
77,444 KB
testcase_19 AC 320 ms
80,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <utility>
#include <vector>
#include <assert.h>
using namespace std;

#define int long long

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];

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

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

    assert(1 <= N and N <= 200000);
    assert(0 <= M and M <= 200000);
    assert(1 <= K and K <= 1e9);
    assert(1 <= S and S <= K);
    assert(1 <= T and T <= K);

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

        assert(1 <= a and a <= N - 1);
        assert(1 <= b and b <= K);
        assert(1 <= c and c <= K);

        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 = inf;
    for (auto& mp : table[0]) ans = min(ans, mp.second + abs(S - mp.first));

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

    return 0;
}
0