結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー simansiman
提出日時 2022-10-18 08:38:23
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,527 bytes
コンパイル時間 3,571 ms
コンパイル使用メモリ 141,944 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-06-28 18:23:08
合計ジャッジ時間 11,250 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 123 ms
8,832 KB
testcase_05 AC 102 ms
7,424 KB
testcase_06 AC 18 ms
5,376 KB
testcase_07 AC 24 ms
5,376 KB
testcase_08 AC 126 ms
10,240 KB
testcase_09 AC 98 ms
6,784 KB
testcase_10 AC 57 ms
5,376 KB
testcase_11 AC 89 ms
7,808 KB
testcase_12 AC 68 ms
6,016 KB
testcase_13 AC 71 ms
8,576 KB
testcase_14 AC 66 ms
5,376 KB
testcase_15 AC 81 ms
8,448 KB
testcase_16 AC 69 ms
5,376 KB
testcase_17 AC 49 ms
7,424 KB
testcase_18 AC 77 ms
8,704 KB
testcase_19 AC 143 ms
10,112 KB
testcase_20 AC 31 ms
5,376 KB
testcase_21 AC 65 ms
6,132 KB
testcase_22 AC 65 ms
5,376 KB
testcase_23 AC 114 ms
9,088 KB
testcase_24 AC 162 ms
11,264 KB
testcase_25 AC 158 ms
11,264 KB
testcase_26 AC 158 ms
11,136 KB
testcase_27 AC 157 ms
11,392 KB
testcase_28 AC 160 ms
11,136 KB
testcase_29 AC 156 ms
11,392 KB
testcase_30 AC 160 ms
11,136 KB
testcase_31 AC 160 ms
11,264 KB
testcase_32 AC 158 ms
11,264 KB
testcase_33 AC 163 ms
11,264 KB
testcase_34 AC 94 ms
6,016 KB
testcase_35 AC 88 ms
5,504 KB
testcase_36 AC 86 ms
5,504 KB
testcase_37 AC 82 ms
5,632 KB
testcase_38 AC 92 ms
5,504 KB
testcase_39 AC 74 ms
5,632 KB
testcase_40 AC 73 ms
5,888 KB
testcase_41 AC 73 ms
5,632 KB
testcase_42 AC 73 ms
5,760 KB
testcase_43 AC 73 ms
5,760 KB
testcase_44 AC 101 ms
10,880 KB
testcase_45 AC 103 ms
11,008 KB
testcase_46 AC 98 ms
10,880 KB
testcase_47 AC 99 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

const ll MOD = 1000000007;

int main() {
  int N, M;
  cin >> N >> M;
  vector<ll> H(N + 1);

  for (int i = 1; i <= N; ++i) {
    cin >> H[i];
  }

  vector<int> E[N + 1];
  for (int i = 0; i < M; ++i) {
    int x, y;
    cin >> x >> y;

    E[x].push_back(y);
    E[y].push_back(x);
  }

  ll dp[N + 1][2];
  memset(dp, -1, sizeof(dp));
  dp[1][0] = 0;

  for (int i = 1; i < N; ++i) {
    for (int k = 0; k < 2; ++k) {
      if (dp[i][k] == -1) continue;

      for (int j : E[i]) {
        if (j < i) continue;
        if (k == 1 && H[i] < H[j]) continue;

        if (H[i] < H[j]) {
          dp[j][1] = max(dp[j][1], dp[i][k] + abs(H[j] - H[i]));
        } else {
          dp[j][0] = max(dp[j][0], dp[i][k]);
        }
      }
    }
  }

  cout << max(dp[N][0], dp[N][1]) << endl;

  memset(dp, -1, sizeof(dp));
  dp[N][0] = 0;

  for (int i = N; i > 1; --i) {
    for (int k = 0; k < 2; ++k) {
      if (dp[i][k] == -1) continue;

      for (int j : E[i]) {
        if (i < j) continue;
        if (k == 1 && H[j] > H[i]) continue;

        if (H[i] < H[j]) {
          dp[j][1] = max(dp[j][1], dp[i][k] + abs(H[j] - H[i]));
        } else {
          dp[j][0] = max(dp[j][0], dp[i][k]);
        }
      }
    }
  }

  cout << max(dp[1][0], dp[1][1]) << endl;

  return 0;
}
0