結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー kmjpkmjp
提出日時 2022-10-14 23:08:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,738 bytes
コンパイル時間 2,420 ms
コンパイル使用メモリ 205,880 KB
実行使用メモリ 23,092 KB
最終ジャッジ日時 2024-06-26 17:00:37
合計ジャッジ時間 7,403 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
13,764 KB
testcase_01 AC 5 ms
13,768 KB
testcase_02 AC 6 ms
14,408 KB
testcase_03 AC 6 ms
13,764 KB
testcase_04 AC 86 ms
19,316 KB
testcase_05 AC 66 ms
16,256 KB
testcase_06 AC 14 ms
13,696 KB
testcase_07 AC 16 ms
13,952 KB
testcase_08 AC 79 ms
18,176 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 58 ms
16,512 KB
testcase_12 WA -
testcase_13 AC 41 ms
18,592 KB
testcase_14 WA -
testcase_15 AC 47 ms
18,260 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 46 ms
18,404 KB
testcase_19 AC 92 ms
19,588 KB
testcase_20 AC 21 ms
15,944 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 67 ms
19,756 KB
testcase_24 AC 100 ms
20,872 KB
testcase_25 WA -
testcase_26 AC 100 ms
20,960 KB
testcase_27 WA -
testcase_28 AC 102 ms
20,872 KB
testcase_29 WA -
testcase_30 AC 108 ms
20,620 KB
testcase_31 WA -
testcase_32 AC 101 ms
20,864 KB
testcase_33 AC 105 ms
20,388 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 49 ms
22,360 KB
testcase_47 AC 49 ms
22,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N,M;
int H[202020];

vector<int> X[202020];
vector<int> Y[202020];

ll dp[202020][2];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M;
	FOR(i,N) cin>>H[i];
	FOR(i,M) {
		cin>>x>>y;
		X[x-1].push_back(y-1);
		Y[y-1].push_back(x-1);
	}
	
	FOR(i,N) dp[i][0]=dp[i][1]=-1LL<<60;
	dp[0][0]=0;
	FOR(i,N) {
		FORR(e,X[i]) {
			if(H[e]>H[i]) {
				dp[e][1]=max(dp[e][1],dp[i][0]+H[e]-H[i]);
			}
			if(H[e]<H[i]) {
				dp[e][0]=max(dp[e][0],dp[i][0]);
				dp[e][1]=max(dp[e][0],dp[i][1]);
			}
		}
	}
	ll ret=max(dp[N-1][0],dp[N-1][1]);
	if(ret<=-1LL<<59) ret=-1;
	cout<<ret<<endl;
	
	FOR(i,N) dp[i][0]=dp[i][1]=-1LL<<60;
	dp[N-1][0]=0;
	for(i=N-1;i>=0;i--) {
		FORR(e,Y[i]) {
			if(H[e]>H[i]) {
				dp[e][1]=max(dp[e][1],dp[i][0]+H[e]-H[i]);
			}
			if(H[e]<H[i]) {
				dp[e][0]=max(dp[e][0],dp[i][0]);
				dp[e][1]=max(dp[e][0],dp[i][1]);
			}
		}
	}
	ret=max(dp[0][0],dp[0][1]);
	if(ret<=-1LL<<59) ret=-1;
	cout<<ret<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0