結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー NAMIDAIRONAMIDAIRO
提出日時 2022-10-15 18:13:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 1,183 bytes
コンパイル時間 1,020 ms
コンパイル使用メモリ 111,700 KB
実行使用メモリ 18,216 KB
最終ジャッジ日時 2024-06-26 20:10:30
合計ジャッジ時間 7,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 139 ms
12,160 KB
testcase_05 AC 108 ms
9,728 KB
testcase_06 AC 20 ms
6,944 KB
testcase_07 AC 26 ms
6,940 KB
testcase_08 AC 139 ms
14,860 KB
testcase_09 AC 105 ms
8,576 KB
testcase_10 AC 55 ms
6,940 KB
testcase_11 AC 101 ms
10,752 KB
testcase_12 AC 73 ms
7,296 KB
testcase_13 AC 78 ms
12,000 KB
testcase_14 AC 64 ms
6,944 KB
testcase_15 AC 88 ms
11,776 KB
testcase_16 AC 71 ms
6,940 KB
testcase_17 AC 54 ms
10,664 KB
testcase_18 AC 83 ms
12,116 KB
testcase_19 AC 167 ms
14,396 KB
testcase_20 AC 35 ms
6,944 KB
testcase_21 AC 70 ms
7,680 KB
testcase_22 AC 68 ms
6,944 KB
testcase_23 AC 124 ms
13,056 KB
testcase_24 AC 177 ms
16,256 KB
testcase_25 AC 181 ms
16,256 KB
testcase_26 AC 183 ms
16,256 KB
testcase_27 AC 182 ms
16,248 KB
testcase_28 AC 182 ms
16,256 KB
testcase_29 AC 185 ms
16,384 KB
testcase_30 AC 180 ms
16,252 KB
testcase_31 AC 178 ms
16,220 KB
testcase_32 AC 179 ms
16,256 KB
testcase_33 AC 182 ms
16,372 KB
testcase_34 AC 96 ms
6,940 KB
testcase_35 AC 84 ms
6,944 KB
testcase_36 AC 83 ms
6,944 KB
testcase_37 AC 77 ms
6,944 KB
testcase_38 AC 91 ms
6,940 KB
testcase_39 AC 68 ms
6,940 KB
testcase_40 AC 67 ms
6,940 KB
testcase_41 AC 68 ms
6,940 KB
testcase_42 AC 68 ms
6,940 KB
testcase_43 AC 67 ms
6,940 KB
testcase_44 AC 109 ms
18,080 KB
testcase_45 AC 108 ms
18,216 KB
testcase_46 AC 106 ms
18,216 KB
testcase_47 AC 107 ms
18,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <set>
#include <random>
#include <iomanip>
using namespace std;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (n); i++)

template<class T>
using vi = vector<T>;

template<class T>
using vii = vector<vi<T>>;

template<class T>
using viii = vector<vii<T>>;

void chmax(ll & x, ll y) { x = max(x, y); }

ll solve(int n, vi<ll> &h, vii<int> &to) {
	const ll inf = 1e18;
	vii<ll> dp(2, vi<ll>(n, -inf));
	dp[0][0] = 0;
	rep(v, n) {
		for (int nv : to[v]) {
			if (h[v] < h[nv]) chmax(dp[1][nv], dp[0][v] + h[nv] - h[v]);
			else {
				chmax(dp[0][nv], dp[1][v]);
				chmax(dp[0][nv], dp[0][v]);
			}
		}
	}
	return max(dp[0][n - 1], dp[1][n - 1]);
}

int main()
{
	int n, m;
	cin >> n >> m;
	
	vi<ll> hc(n), hz(n);
	rep(i, n) cin >> hc[i];
	rep(i, n) hz[i] = hc[n - 1 - i];

	vii<int> toc(n), toz(n);
	rep(i, m) {
		int x, y;
		cin >> x >> y;
		x--, y--;
		toc[x].push_back(y);
		toz[n - 1 - y].push_back(n - 1 - x);
	}
	ll resc = solve(n, hc, toc);
	ll resz = solve(n, hz, toz);
	cout << (resc < 0 ? -1 : resc) << endl;
	cout << (resz < 0 ? -1 : resz) << endl;

	return 0;
}
0