結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2022-10-14 22:38:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 1,608 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 203,544 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-06-26 16:13:01
合計ジャッジ時間 8,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 3 ms
5,888 KB
testcase_02 AC 3 ms
5,888 KB
testcase_03 AC 3 ms
5,888 KB
testcase_04 AC 137 ms
10,880 KB
testcase_05 AC 110 ms
9,728 KB
testcase_06 AC 21 ms
7,040 KB
testcase_07 AC 26 ms
7,168 KB
testcase_08 AC 126 ms
12,160 KB
testcase_09 AC 107 ms
9,088 KB
testcase_10 AC 59 ms
7,296 KB
testcase_11 AC 96 ms
10,112 KB
testcase_12 AC 77 ms
8,320 KB
testcase_13 AC 77 ms
10,496 KB
testcase_14 AC 67 ms
7,808 KB
testcase_15 AC 83 ms
10,496 KB
testcase_16 AC 75 ms
7,808 KB
testcase_17 AC 51 ms
9,472 KB
testcase_18 AC 81 ms
10,624 KB
testcase_19 AC 153 ms
12,160 KB
testcase_20 AC 36 ms
7,296 KB
testcase_21 AC 72 ms
8,576 KB
testcase_22 AC 72 ms
7,808 KB
testcase_23 AC 115 ms
11,264 KB
testcase_24 AC 173 ms
13,056 KB
testcase_25 AC 168 ms
13,184 KB
testcase_26 AC 173 ms
13,184 KB
testcase_27 AC 176 ms
13,184 KB
testcase_28 AC 173 ms
13,184 KB
testcase_29 AC 178 ms
13,184 KB
testcase_30 AC 172 ms
13,184 KB
testcase_31 AC 171 ms
13,184 KB
testcase_32 AC 171 ms
13,184 KB
testcase_33 AC 168 ms
13,312 KB
testcase_34 AC 98 ms
8,448 KB
testcase_35 AC 89 ms
8,064 KB
testcase_36 AC 89 ms
7,808 KB
testcase_37 AC 81 ms
7,808 KB
testcase_38 AC 96 ms
8,064 KB
testcase_39 AC 76 ms
8,448 KB
testcase_40 AC 74 ms
8,320 KB
testcase_41 AC 75 ms
8,320 KB
testcase_42 AC 76 ms
8,192 KB
testcase_43 AC 75 ms
8,064 KB
testcase_44 AC 101 ms
12,800 KB
testcase_45 AC 101 ms
12,800 KB
testcase_46 AC 98 ms
12,904 KB
testcase_47 AC 98 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main () {
    int N, M;
    cin >> N >> M;
    ll H[200020];
    for (int i = 0; i < N; i ++) {
        cin >> H[i];
    }
    vector<int> gr[100010];
    for (int i = 0; i < M; i ++) {
        int a, b;
        cin >> a >> b;
        gr[--a].push_back(--b);
        gr[b].push_back(a);
    }
    ll dp1[100010][2], dp2[100010][2];
    for (int i = 0; i < N; i ++) {
        for (int j = 0; j < 2; j ++) {
            dp1[i][j] = dp2[i][j] = -(ll)1e18;
        }
    }
    dp1[0][0] = dp1[0][1] = dp2[N-1][0] = dp2[N-1][1] = 0;
    for (int i = 0; i < N - 1; i ++) {
        for (int j = 0; j < 2; j ++) {
            for (auto v : gr[i]) {
                if (H[v] > H[i] && j) {
                    continue;
                }
                if (v <= i) {
                    continue;
                }
                int p = H[v] > H[i];
                dp1[v][p] = max(dp1[v][p], dp1[i][j] + max(0ll, H[v] - H[i]));
            }
        }
    }
    for (int i = N - 1; i > 0; i --) {
        for (int j = 0; j < 2; j ++) {
            for (auto v : gr[i]) {
                if (H[v] > H[i] && j) {
                    continue;
                }
                if (v >= i) {
                    continue;
                }
                int p = H[v] > H[i];
                dp2[v][p] = max(dp2[v][p], dp2[i][j] + max(0ll, H[v] - H[i]));
            }
        }
    }
    ll ans1 = max(dp1[N-1][0], dp1[N-1][1]), ans2 = max(dp2[0][0], dp2[0][1]);
    cout << (ans1 < 0 ? -1 : ans1) << '\n' << (ans2 < 0 ? -1 : ans2) << endl;
}
0