結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー yansi819yansi819
提出日時 2024-04-12 10:38:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 1,245 bytes
コンパイル時間 4,674 ms
コンパイル使用メモリ 264,484 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-10-02 22:17:30
合計ジャッジ時間 12,217 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,888 KB
testcase_01 AC 4 ms
5,888 KB
testcase_02 AC 3 ms
5,888 KB
testcase_03 AC 4 ms
5,888 KB
testcase_04 AC 141 ms
15,488 KB
testcase_05 AC 127 ms
12,800 KB
testcase_06 AC 24 ms
7,808 KB
testcase_07 AC 29 ms
8,448 KB
testcase_08 AC 153 ms
19,072 KB
testcase_09 AC 109 ms
11,136 KB
testcase_10 AC 56 ms
7,168 KB
testcase_11 AC 108 ms
14,208 KB
testcase_12 AC 75 ms
9,856 KB
testcase_13 AC 90 ms
16,256 KB
testcase_14 AC 67 ms
8,320 KB
testcase_15 AC 97 ms
15,616 KB
testcase_16 AC 74 ms
8,320 KB
testcase_17 AC 66 ms
14,720 KB
testcase_18 AC 94 ms
16,256 KB
testcase_19 AC 174 ms
18,048 KB
testcase_20 AC 38 ms
8,704 KB
testcase_21 AC 76 ms
10,496 KB
testcase_22 AC 69 ms
8,320 KB
testcase_23 AC 133 ms
16,768 KB
testcase_24 AC 210 ms
20,224 KB
testcase_25 AC 203 ms
20,224 KB
testcase_26 AC 205 ms
20,224 KB
testcase_27 AC 208 ms
20,352 KB
testcase_28 AC 212 ms
20,224 KB
testcase_29 AC 207 ms
20,352 KB
testcase_30 AC 200 ms
20,224 KB
testcase_31 AC 203 ms
20,224 KB
testcase_32 AC 203 ms
20,224 KB
testcase_33 AC 200 ms
20,224 KB
testcase_34 AC 100 ms
8,576 KB
testcase_35 AC 87 ms
8,064 KB
testcase_36 AC 86 ms
7,936 KB
testcase_37 AC 80 ms
7,808 KB
testcase_38 AC 94 ms
8,064 KB
testcase_39 AC 72 ms
8,320 KB
testcase_40 AC 72 ms
8,448 KB
testcase_41 AC 72 ms
8,448 KB
testcase_42 AC 72 ms
8,192 KB
testcase_43 AC 73 ms
8,192 KB
testcase_44 AC 119 ms
20,224 KB
testcase_45 AC 117 ms
20,224 KB
testcase_46 AC 115 ms
20,096 KB
testcase_47 AC 114 ms
20,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using mint = modint998244353;

int N, M, H[101010];
vector<int> G[101010];

int main() {
  cin >> N >> M;
  for (int i = 1; i <= N; i++) cin >> H[i];
  for (int i = 1; i <= M; i++) {
    int x, y; cin >> x >> y;
    G[x].push_back(y);
    G[y].push_back(x);
  }
  ll INF = 1LL << 60;
  vector<vector<ll>> dpc(N + 1, vector<ll>(2, -INF));
  dpc[1][0] = 0;
  for (int a = 1; a <= N; a++) {
    for (auto b: G[a]) {
      if (a < b) {
        if (H[a] < H[b]) dpc[b][1] = max(dpc[b][1], dpc[a][0] + (H[b] - H[a]));
        else dpc[b][0] = max(dpc[b][0], max(dpc[a][0], dpc[a][1]));
      }
    }
  }
  vector<vector<ll>> dpz(N + 1, vector<ll>(2, -INF));
  dpz[N][0] = 0;
  for (int a = N; a >= 1; a--) {
    for (auto b: G[a]) {
      if (a > b) {
        if (H[a] < H[b]) dpz[b][1] = max(dpz[b][1], dpz[a][0] + (H[b] - H[a]));
        else dpz[b][0] = max(dpz[b][0], max(dpz[a][0], dpz[a][1]));
      }
    }
  }
  cout << (max(dpc[N][0], dpc[N][1]) > -INF / 2 ? max(dpc[N][0], dpc[N][1]): -1) << endl;
  cout << (max(dpz[1][0], dpz[1][1]) > -INF / 2 ? max(dpz[1][0], dpz[1][1]): -1) << endl;
  return 0;
}
0