結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー Manuel1024Manuel1024
提出日時 2022-12-11 08:35:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 1,284 bytes
コンパイル時間 755 ms
コンパイル使用メモリ 81,176 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-10-15 06:33:39
合計ジャッジ時間 8,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 138 ms
10,168 KB
testcase_05 AC 109 ms
8,536 KB
testcase_06 AC 20 ms
5,248 KB
testcase_07 AC 26 ms
5,248 KB
testcase_08 AC 135 ms
12,196 KB
testcase_09 AC 104 ms
7,552 KB
testcase_10 AC 55 ms
5,248 KB
testcase_11 AC 100 ms
9,164 KB
testcase_12 AC 76 ms
6,512 KB
testcase_13 AC 79 ms
10,136 KB
testcase_14 AC 65 ms
5,504 KB
testcase_15 AC 89 ms
9,856 KB
testcase_16 AC 71 ms
5,760 KB
testcase_17 AC 53 ms
9,032 KB
testcase_18 AC 84 ms
10,216 KB
testcase_19 AC 156 ms
11,932 KB
testcase_20 AC 34 ms
5,504 KB
testcase_21 AC 72 ms
6,740 KB
testcase_22 AC 68 ms
5,760 KB
testcase_23 AC 120 ms
10,784 KB
testcase_24 AC 177 ms
13,172 KB
testcase_25 AC 174 ms
13,300 KB
testcase_26 AC 172 ms
13,424 KB
testcase_27 AC 176 ms
13,440 KB
testcase_28 AC 171 ms
13,336 KB
testcase_29 AC 170 ms
13,176 KB
testcase_30 AC 173 ms
13,304 KB
testcase_31 AC 176 ms
13,284 KB
testcase_32 AC 171 ms
13,424 KB
testcase_33 AC 173 ms
13,176 KB
testcase_34 AC 95 ms
6,144 KB
testcase_35 AC 85 ms
5,760 KB
testcase_36 AC 84 ms
5,504 KB
testcase_37 AC 79 ms
5,632 KB
testcase_38 AC 91 ms
5,632 KB
testcase_39 AC 70 ms
5,760 KB
testcase_40 AC 70 ms
6,016 KB
testcase_41 AC 70 ms
5,760 KB
testcase_42 AC 71 ms
6,016 KB
testcase_43 AC 71 ms
6,016 KB
testcase_44 AC 104 ms
13,008 KB
testcase_45 AC 103 ms
13,008 KB
testcase_46 AC 101 ms
13,008 KB
testcase_47 AC 102 ms
13,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using ll = long long;

int main(){
    int n, m; cin >> n >> m;
    vector<int> h(n);
    for(auto &it: h) cin >> it;
    vector<vector<int>> G(n);
    for(int i = 0; i < m; i++){
        int x, y; cin >> x >> y;
        x--; y--;
        G[x].emplace_back(y);
        G[y].emplace_back(x);
    }

    vector<vector<ll>> dp1(2, vector<ll>(n, -(1LL << 60)));
    dp1[0][0] = 0;
    for(int i = 0; i < n; i++){
        for(auto &nex: G[i]){
            if(nex < i) continue;
            if(h[i] < h[nex]) dp1[1][nex] = max(dp1[1][nex], dp1[0][i]+h[nex]-h[i]);
            else dp1[0][nex] = max(dp1[0][nex], max(dp1[0][i], dp1[1][i]));
        }
    }
    cout << (max(dp1[0][n-1], dp1[1][n-1]) >= 0 ? max(dp1[0][n-1], dp1[1][n-1]) : -1) << endl;
    vector<vector<ll>> dp2(2, vector<ll>(n, -(1LL << 60)));
    dp2[0][n-1] = 0;
    for(int i = n-1; i >= 0; i--){
        for(auto &nex: G[i]){
            if(nex > i) continue;
            if(h[i] < h[nex]) dp2[1][nex] = max(dp2[1][nex], dp2[0][i]+h[nex]-h[i]);
            else dp2[0][nex] = max(dp2[0][nex], max(dp2[0][i], dp2[1][i]));
        }
    }
    cout << (max(dp2[0][0], dp2[1][0]) >= 0 ? max(dp2[0][0], dp2[1][0]) : -1) << endl;
    return 0;
}
0