結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー ruthenruthen
提出日時 2022-10-14 22:31:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 1,545 bytes
コンパイル時間 2,495 ms
コンパイル使用メモリ 207,464 KB
実行使用メモリ 16,556 KB
最終ジャッジ日時 2024-06-26 15:51:04
合計ジャッジ時間 6,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 61 ms
11,008 KB
testcase_05 AC 50 ms
9,004 KB
testcase_06 AC 10 ms
5,376 KB
testcase_07 AC 12 ms
5,376 KB
testcase_08 AC 59 ms
13,312 KB
testcase_09 AC 48 ms
7,936 KB
testcase_10 AC 24 ms
5,376 KB
testcase_11 AC 48 ms
9,860 KB
testcase_12 AC 31 ms
6,944 KB
testcase_13 AC 34 ms
10,776 KB
testcase_14 AC 29 ms
5,760 KB
testcase_15 AC 38 ms
10,624 KB
testcase_16 AC 31 ms
5,760 KB
testcase_17 AC 22 ms
9,232 KB
testcase_18 AC 36 ms
10,896 KB
testcase_19 AC 79 ms
12,988 KB
testcase_20 AC 15 ms
5,632 KB
testcase_21 AC 33 ms
7,040 KB
testcase_22 AC 30 ms
5,760 KB
testcase_23 AC 51 ms
11,676 KB
testcase_24 AC 80 ms
14,724 KB
testcase_25 AC 74 ms
14,724 KB
testcase_26 AC 84 ms
14,716 KB
testcase_27 AC 118 ms
14,592 KB
testcase_28 AC 86 ms
14,728 KB
testcase_29 AC 72 ms
14,732 KB
testcase_30 AC 76 ms
14,720 KB
testcase_31 AC 91 ms
14,596 KB
testcase_32 AC 75 ms
14,720 KB
testcase_33 AC 79 ms
14,592 KB
testcase_34 AC 41 ms
6,272 KB
testcase_35 AC 36 ms
6,016 KB
testcase_36 AC 34 ms
5,760 KB
testcase_37 AC 32 ms
5,632 KB
testcase_38 AC 39 ms
6,144 KB
testcase_39 AC 30 ms
5,376 KB
testcase_40 AC 28 ms
5,376 KB
testcase_41 AC 28 ms
5,376 KB
testcase_42 AC 28 ms
5,376 KB
testcase_43 AC 28 ms
5,376 KB
testcase_44 AC 50 ms
16,556 KB
testcase_45 AC 48 ms
16,428 KB
testcase_46 AC 48 ms
16,556 KB
testcase_47 AC 49 ms
16,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#ifdef _RUTHEN
#include <debug.hpp>
#else
#define show(...) true
#endif

using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
template <class T> using V = vector<T>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N, M;
    cin >> N >> M;
    V<ll> H(N);
    rep(i, N) cin >> H[i];
    V<V<int>> G1(N), G2(N);
    rep(i, M) {
        int x, y;
        cin >> x >> y;
        x--, y--;
        G1[x].push_back(y);
        G2[N - 1 - y].push_back(N - 1 - x);
    }
    const ll INF = 1LL << 60;
    auto calc = [&INF](V<V<int>> &G, V<ll> &H) -> ll {
        int N = (int)G.size();
        V<ll> dp0(N, -INF), dp1(N, -INF);
        dp0[0] = dp1[0] = 0;
        for (int i = 0; i < N; i++) {
            if (dp0[i] != -INF) {
                for (auto nex : G[i]) {
                    if (H[i] < H[nex]) {
                        dp1[nex] = max(dp1[nex], dp0[i] + H[nex] - H[i]);
                    } else {
                        dp0[nex] = max(dp0[nex], dp0[i]);
                    }
                }
            }
            if (dp1[i] != -INF) {
                for (auto nex : G[i]) {
                    if (H[i] > H[nex]) {
                        dp0[nex] = max(dp0[nex], dp1[i]);
                    }
                }
            }
        }
        return max({dp0[N - 1], dp1[N - 1], -1LL});
    };
    ll ans1 = calc(G1, H);
    reverse(H.begin(), H.end());
    ll ans2 = calc(G2, H);
    cout << ans1 << '\n' << ans2 << '\n';
    return 0;
}
0