結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー 沙耶花沙耶花
提出日時 2022-10-14 21:37:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,266 bytes
コンパイル時間 4,888 ms
コンパイル使用メモリ 267,044 KB
実行使用メモリ 17,420 KB
最終ジャッジ日時 2024-06-26 13:21:10
合計ジャッジ時間 11,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 132 ms
13,076 KB
testcase_05 AC 103 ms
10,632 KB
testcase_06 AC 22 ms
5,504 KB
testcase_07 AC 25 ms
5,968 KB
testcase_08 AC 134 ms
15,540 KB
testcase_09 AC 103 ms
9,344 KB
testcase_10 WA -
testcase_11 AC 98 ms
11,468 KB
testcase_12 WA -
testcase_13 AC 85 ms
12,416 KB
testcase_14 WA -
testcase_15 AC 88 ms
12,188 KB
testcase_16 WA -
testcase_17 AC 59 ms
11,008 KB
testcase_18 AC 89 ms
12,428 KB
testcase_19 AC 159 ms
15,360 KB
testcase_20 AC 35 ms
6,272 KB
testcase_21 AC 70 ms
8,192 KB
testcase_22 WA -
testcase_23 AC 122 ms
13,568 KB
testcase_24 AC 171 ms
17,280 KB
testcase_25 WA -
testcase_26 AC 174 ms
17,280 KB
testcase_27 WA -
testcase_28 AC 173 ms
17,280 KB
testcase_29 WA -
testcase_30 AC 170 ms
17,280 KB
testcase_31 WA -
testcase_32 AC 175 ms
17,152 KB
testcase_33 AC 172 ms
17,280 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 72 ms
6,788 KB
testcase_40 AC 72 ms
6,788 KB
testcase_41 AC 72 ms
6,784 KB
testcase_42 AC 71 ms
6,784 KB
testcase_43 AC 72 ms
6,784 KB
testcase_44 AC 122 ms
17,408 KB
testcase_45 AC 123 ms
17,408 KB
testcase_46 AC 117 ms
17,280 KB
testcase_47 AC 119 ms
17,280 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];
				//cout<<to<<','<<j<<endl;
				dp[to][j^1] = max(dp[to][j^1],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