結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
12,928 KB
testcase_01 AC 5 ms
12,928 KB
testcase_02 AC 6 ms
12,800 KB
testcase_03 AC 5 ms
12,928 KB
testcase_04 AC 75 ms
17,536 KB
testcase_05 AC 59 ms
16,384 KB
testcase_06 AC 13 ms
13,696 KB
testcase_07 AC 15 ms
14,080 KB
testcase_08 AC 74 ms
18,176 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 50 ms
16,640 KB
testcase_12 WA -
testcase_13 AC 42 ms
16,512 KB
testcase_14 WA -
testcase_15 AC 43 ms
16,768 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 48 ms
16,640 KB
testcase_19 AC 86 ms
18,432 KB
testcase_20 AC 20 ms
14,336 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 61 ms
17,664 KB
testcase_24 AC 103 ms
19,328 KB
testcase_25 WA -
testcase_26 AC 103 ms
19,200 KB
testcase_27 WA -
testcase_28 AC 97 ms
19,328 KB
testcase_29 AC 93 ms
19,328 KB
testcase_30 AC 98 ms
19,200 KB
testcase_31 AC 104 ms
19,328 KB
testcase_32 AC 97 ms
19,328 KB
testcase_33 AC 94 ms
19,200 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 50 ms
20,992 KB
testcase_47 AC 49 ms
21,120 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][0]=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