結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー 沙耶花沙耶花
提出日時 2022-10-14 21:40:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 1,232 bytes
コンパイル時間 4,555 ms
コンパイル使用メモリ 266,096 KB
実行使用メモリ 17,456 KB
最終ジャッジ日時 2024-06-26 13:25:42
合計ジャッジ時間 10,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 132 ms
13,072 KB
testcase_05 AC 107 ms
10,640 KB
testcase_06 AC 21 ms
6,944 KB
testcase_07 AC 27 ms
6,940 KB
testcase_08 AC 133 ms
15,624 KB
testcase_09 AC 101 ms
9,472 KB
testcase_10 AC 56 ms
6,944 KB
testcase_11 AC 97 ms
11,464 KB
testcase_12 AC 71 ms
7,808 KB
testcase_13 AC 84 ms
12,416 KB
testcase_14 AC 62 ms
6,944 KB
testcase_15 AC 90 ms
12,192 KB
testcase_16 AC 68 ms
6,944 KB
testcase_17 AC 59 ms
10,880 KB
testcase_18 AC 87 ms
12,552 KB
testcase_19 AC 153 ms
15,488 KB
testcase_20 AC 34 ms
6,944 KB
testcase_21 AC 70 ms
8,320 KB
testcase_22 AC 68 ms
6,944 KB
testcase_23 AC 123 ms
13,696 KB
testcase_24 AC 172 ms
17,280 KB
testcase_25 AC 175 ms
17,268 KB
testcase_26 AC 173 ms
17,280 KB
testcase_27 AC 172 ms
17,280 KB
testcase_28 AC 177 ms
17,280 KB
testcase_29 AC 172 ms
17,280 KB
testcase_30 AC 174 ms
17,152 KB
testcase_31 AC 177 ms
17,152 KB
testcase_32 AC 173 ms
17,280 KB
testcase_33 AC 174 ms
17,228 KB
testcase_34 AC 93 ms
7,552 KB
testcase_35 AC 85 ms
7,092 KB
testcase_36 AC 84 ms
7,048 KB
testcase_37 AC 80 ms
7,068 KB
testcase_38 AC 90 ms
7,296 KB
testcase_39 AC 73 ms
6,940 KB
testcase_40 AC 70 ms
6,944 KB
testcase_41 AC 68 ms
6,944 KB
testcase_42 AC 70 ms
6,940 KB
testcase_43 AC 70 ms
6,944 KB
testcase_44 AC 121 ms
17,456 KB
testcase_45 AC 119 ms
17,388 KB
testcase_46 AC 118 ms
17,408 KB
testcase_47 AC 118 ms
17,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 2000000000000000001

void solve(vector<long long> h,vector<int> x,vector<int> y){
	int n = h.size();
	vector<vector<int>> E(n);
	rep(i,x.size()){
		E[min(x[i],y[i])].push_back(max(x[i],y[i]));
	}
	
	vector dp(n,vector<long long>(2,-Inf64));
	dp[0][0] = 0;
	dp[0][1] = 0;
	rep(i,n-1){
		rep(j,2){
			if(dp[i][j]==-Inf64)continue;
			rep(k,E[i].size()){
				int to = E[i][k];
				int F;
				if(h[i] < h[to])F = 1;
				else F = 0;
				if(F==j&&j==1)continue;
				long long C = 0;
				if(F==1)C = h[to] - h[i];
				dp[to][F] = max(dp[to][F],dp[i][j]+C);
			}
		}
	}
	/*
	rep(i,n){
		cout<<dp[i][0]<<','<<dp[i][1]<<endl;
	}*/
	long long ans = max(dp[n-1][0],dp[n-1][1]);
	if(ans==-Inf64)ans = -1;
	cout<<ans<<endl;
}

int main(){
	
	int n,m;
	cin>>n>>m;
	
	vector<long long> h(n);
	rep(i,n){
		cin>>h[i];
	}
	
	vector<int> x(m),y(m);
	rep(i,m){
		cin>>x[i]>>y[i];
		x[i]--,y[i]--;
	}
	solve(h,x,y);
	rep(i,m){
		x[i] = n-1-x[i];
		y[i] = n-1-y[i];
	}
	reverse(h.begin(),h.end());
	solve(h,x,y);
	return 0;
}
0