結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー snow39snow39
提出日時 2022-10-14 21:45:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 1,946 bytes
コンパイル時間 1,504 ms
コンパイル使用メモリ 118,480 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-06-26 13:34:39
合計ジャッジ時間 5,555 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 67 ms
12,964 KB
testcase_05 AC 53 ms
10,524 KB
testcase_06 AC 12 ms
5,376 KB
testcase_07 AC 14 ms
5,864 KB
testcase_08 AC 72 ms
15,304 KB
testcase_09 AC 50 ms
9,216 KB
testcase_10 AC 26 ms
5,760 KB
testcase_11 AC 52 ms
11,364 KB
testcase_12 AC 35 ms
7,808 KB
testcase_13 AC 45 ms
12,288 KB
testcase_14 AC 30 ms
6,516 KB
testcase_15 AC 47 ms
12,068 KB
testcase_16 AC 33 ms
6,676 KB
testcase_17 AC 32 ms
10,752 KB
testcase_18 AC 46 ms
12,448 KB
testcase_19 AC 79 ms
15,360 KB
testcase_20 AC 17 ms
6,220 KB
testcase_21 AC 35 ms
8,064 KB
testcase_22 AC 32 ms
6,784 KB
testcase_23 AC 63 ms
13,540 KB
testcase_24 AC 89 ms
17,152 KB
testcase_25 AC 89 ms
17,152 KB
testcase_26 AC 87 ms
17,152 KB
testcase_27 AC 88 ms
17,024 KB
testcase_28 AC 90 ms
17,208 KB
testcase_29 AC 86 ms
17,248 KB
testcase_30 AC 85 ms
17,116 KB
testcase_31 AC 89 ms
17,152 KB
testcase_32 AC 88 ms
17,152 KB
testcase_33 AC 89 ms
17,152 KB
testcase_34 AC 44 ms
7,552 KB
testcase_35 AC 39 ms
6,972 KB
testcase_36 AC 38 ms
6,960 KB
testcase_37 AC 36 ms
6,924 KB
testcase_38 AC 41 ms
7,148 KB
testcase_39 AC 32 ms
6,768 KB
testcase_40 AC 32 ms
6,784 KB
testcase_41 AC 32 ms
6,656 KB
testcase_42 AC 32 ms
6,784 KB
testcase_43 AC 32 ms
6,656 KB
testcase_44 AC 64 ms
17,260 KB
testcase_45 AC 65 ms
17,408 KB
testcase_46 AC 63 ms
17,280 KB
testcase_47 AC 62 ms
17,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <tuple>
#include <vector>

#define mkp make_pair
#define mkt make_tuple
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define all(v) v.begin(), v.end()
using namespace std;
typedef long long ll;
const ll MOD = 1e9 + 7;
// const ll MOD = 998244353;
template <class T>
void chmin(T &a, const T &b) {
    if (a > b) a = b;
}
template <class T>
void chmax(T &a, const T &b) {
    if (a < b) a = b;
}

const ll INF = 1e18;

ll calc(vector<ll> H, vector<int> X, vector<int> Y) {
    const int N = H.size();
    const int M = X.size();
    vector<vector<int>> g(N);
    rep(i, M) g[X[i]].push_back(Y[i]);

    vector<vector<ll>> dp(N, vector<ll>(2, -INF));
    dp[0][0] = 0;
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < 2; j++) {
            const ll value = dp[i][j];
            if (value == -INF) continue;

            for (auto to : g[i]) {
                if (j == 1 && H[i] < H[to]) continue;
                int nj = 0;
                if (H[i] < H[to]) nj = 1;
                chmax(dp[to][nj], value + max(0ll, H[to] - H[i]));
            }
        }
    }
    return max(dp[N - 1][0], dp[N - 1][1]);
}

void solve() {
    int N, M;
    cin >> N >> M;
    vector<ll> H(N);
    rep(i, N) cin >> H[i];
    vector<int> X(M), Y(M);
    rep(i, M) {
        cin >> X[i] >> Y[i];
        X[i]--;
        Y[i]--;
    }

    ll ans1 = calc(H, X, Y);
    reverse(all(H));
    rep(i, M) {
        X[i] = N - 1 - X[i];
        Y[i] = N - 1 - Y[i];
    }
    swap(X, Y);
    ll ans2 = calc(H, X, Y);

    if (ans1 == -INF)
        cout << -1 << endl;
    else
        cout << ans1 << endl;

    if (ans2 == -INF)
        cout << -1 << endl;
    else
        cout << ans2 << endl;
}

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

    solve();

    return 0;
}
0