結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー kwm_tkwm_t
提出日時 2022-10-15 12:40:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,300 bytes
コンパイル時間 2,666 ms
コンパイル使用メモリ 218,364 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-06-26 19:41:49
合計ジャッジ時間 13,445 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 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 80 ms
16,424 KB
testcase_05 AC 60 ms
13,480 KB
testcase_06 AC 11 ms
5,640 KB
testcase_07 AC 15 ms
6,212 KB
testcase_08 AC 80 ms
18,432 KB
testcase_09 AC 65 ms
12,288 KB
testcase_10 AC 666 ms
8,832 KB
testcase_11 AC 56 ms
13,736 KB
testcase_12 AC 41 ms
9,908 KB
testcase_13 AC 47 ms
14,092 KB
testcase_14 AC 48 ms
8,880 KB
testcase_15 AC 50 ms
13,936 KB
testcase_16 AC 47 ms
9,408 KB
testcase_17 AC 31 ms
12,096 KB
testcase_18 AC 48 ms
14,180 KB
testcase_19 AC 99 ms
19,184 KB
testcase_20 AC 21 ms
6,948 KB
testcase_21 AC 41 ms
10,160 KB
testcase_22 AC 50 ms
9,172 KB
testcase_23 AC 75 ms
16,436 KB
testcase_24 AC 105 ms
21,368 KB
testcase_25 AC 110 ms
21,360 KB
testcase_26 AC 107 ms
21,376 KB
testcase_27 AC 111 ms
21,248 KB
testcase_28 AC 110 ms
21,364 KB
testcase_29 AC 107 ms
21,360 KB
testcase_30 AC 109 ms
21,376 KB
testcase_31 AC 111 ms
21,360 KB
testcase_32 AC 106 ms
21,364 KB
testcase_33 AC 102 ms
21,248 KB
testcase_34 AC 158 ms
11,776 KB
testcase_35 AC 609 ms
11,904 KB
testcase_36 AC 874 ms
11,648 KB
testcase_37 AC 1,427 ms
11,648 KB
testcase_38 AC 237 ms
11,968 KB
testcase_39 TLE -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<long long,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
struct Edge {
	int to;
	long long cost;
	Edge(int _to, long long _cost) :to(_to), cost(_cost) {}
};
long long dikstra(int n, int st, int ed, const vector<vector<Edge>>&g) {
	vector<vector<long long>> dp(n, vector<long long>(2, -LINF));
	priority_queue<pair<long long, pair<int, int>>> q;
	q.push({ 0, {st,1} });
	dp[st][1] = 0;
	while (!q.empty()) {
		auto tmp = q.top();
		q.pop();
		long long cost = tmp.first;
		int pos = tmp.second.first;
		int type = tmp.second.second;
		if (cost < dp[pos][type]) continue;
		for (Edge e : g[pos]) {
			long long ncost = cost + e.cost;
			int npos = e.to;
			if (0 == type) {
				if (e.cost > 0) {
					// nop
				}
				else {
					if (chmax(dp[npos][1], ncost)) q.push({ ncost, {npos,1 } });
				}
			}
			else {
				if (e.cost > 0) {
					if (chmax(dp[npos][0], ncost)) q.push({ ncost, {npos,0 } });
				}
				else {
					if (chmax(dp[npos][1], ncost)) q.push({ ncost, {npos,1 } });
				}
			}
		}
	}
	long long ret = max(dp[ed][0], dp[ed][1]);
	if (-LINF == ret) ret = -1;
	return ret;
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, m; cin >> n >> m;
	vector<int>h(n);
	vector<vector<Edge>>g0(n), g1(n);
	rep(i, n)cin >> h[i];
	rep(i, m) {
		int x, y; cin >> x >> y; x--, y--;
		if (x > y)swap(x, y);
		g0[x].emplace_back(y, max(0, h[y] - h[x]));
		g1[y].emplace_back(x, max(0, h[x] - h[y]));
	}
	cout << dikstra(n, 0, n - 1, g0) << endl;
	cout << dikstra(n, n - 1, 0, g1) << endl;
	return 0;
}
0