結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー kyushu1996kyushu1996
提出日時 2022-10-27 02:39:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 1,540 bytes
コンパイル時間 1,256 ms
コンパイル使用メモリ 115,348 KB
実行使用メモリ 25,604 KB
最終ジャッジ日時 2024-07-04 13:57:15
合計ジャッジ時間 8,561 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 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 130 ms
20,696 KB
testcase_05 AC 108 ms
17,568 KB
testcase_06 AC 13 ms
5,760 KB
testcase_07 AC 16 ms
6,656 KB
testcase_08 AC 114 ms
20,756 KB
testcase_09 AC 133 ms
17,120 KB
testcase_10 AC 113 ms
13,056 KB
testcase_11 AC 82 ms
16,320 KB
testcase_12 AC 74 ms
13,168 KB
testcase_13 AC 49 ms
14,236 KB
testcase_14 AC 96 ms
12,672 KB
testcase_15 AC 62 ms
14,776 KB
testcase_16 AC 102 ms
13,568 KB
testcase_17 AC 25 ms
11,204 KB
testcase_18 AC 50 ms
14,484 KB
testcase_19 AC 162 ms
23,432 KB
testcase_20 AC 25 ms
7,808 KB
testcase_21 AC 78 ms
12,876 KB
testcase_22 AC 95 ms
13,056 KB
testcase_23 AC 99 ms
19,076 KB
testcase_24 AC 198 ms
25,596 KB
testcase_25 AC 182 ms
25,596 KB
testcase_26 AC 154 ms
25,604 KB
testcase_27 AC 168 ms
25,600 KB
testcase_28 AC 184 ms
25,548 KB
testcase_29 AC 170 ms
25,600 KB
testcase_30 AC 166 ms
25,472 KB
testcase_31 AC 200 ms
25,596 KB
testcase_32 AC 202 ms
25,600 KB
testcase_33 AC 172 ms
25,600 KB
testcase_34 AC 221 ms
18,048 KB
testcase_35 AC 176 ms
17,664 KB
testcase_36 AC 179 ms
17,792 KB
testcase_37 AC 209 ms
17,408 KB
testcase_38 AC 181 ms
17,792 KB
testcase_39 AC 186 ms
17,408 KB
testcase_40 AC 159 ms
17,408 KB
testcase_41 AC 161 ms
17,408 KB
testcase_42 AC 169 ms
17,536 KB
testcase_43 AC 197 ms
17,408 KB
testcase_44 AC 56 ms
20,864 KB
testcase_45 AC 53 ms
20,860 KB
testcase_46 AC 54 ms
20,848 KB
testcase_47 AC 52 ms
20,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <string>
#include <vector>
#include <queue>
#include <set>
#include <numeric>
#include <cmath>
#define ll long long
#define endl '\n'
using namespace std;
// category : 

int main() {
    ios_base::sync_with_stdio(false);
    
    int n,m; cin>>n>>m;

	vector<vector<ll>> dp1(2,vector<ll>(n+1,0));
	vector<vector<ll>> dp2(2,vector<ll>(n+1,0));

	vector<vector<bool>> flag1(2,vector<bool>(n+1,0));
	vector<vector<bool>> flag2(2,vector<bool>(n+1,0));

	flag1[0][1]=true;
	flag2[0][n]=true;
	
	int h[n+1]={}; for(int i=1;i<=n;i++) cin>>h[i];

	vector<set<int>> v(n+1);
	for(int i=0;i<m;i++){
		int x,y; cin>>x>>y;
		v[x].insert(y);
		v[y].insert(x);
	}

	for(int i=2;i<=n;i++){
		for(auto& j : v[i]){
			if(!(flag1[0][j]|flag1[1][j])) continue;
			
			if(h[i]>h[j]){
				if(flag1[0][j]){
					dp1[1][i]=max(dp1[1][i],dp1[0][j]+h[i]-h[j]);
					flag1[1][i]=true;
				}
			}
			else{
				dp1[0][i]=max({dp1[0][i],dp1[0][j],dp1[1][j]});
				flag1[0][i]=true;
			}
		}
	}
	if(flag1[0][n]|flag1[1][n])cout<<max(dp1[0][n],dp1[1][n])<<endl;
	else cout<<-1<<endl;

	for(int i=n-1;i>=1;i--){
		for(auto& j : v[i]){
			if(!(flag2[0][j]|flag2[1][j])) continue;
			
			if(h[i]>h[j]){
				if(flag2[0][j]){
					dp2[1][i]=max(dp2[1][i],dp2[0][j]+h[i]-h[j]);
					flag2[1][i]=true;
				}
			}
			else{
				dp2[0][i]=max({dp2[0][i],dp2[0][j],dp2[1][j]});
				flag2[0][i]=true;
			}
		}
	}
	if(flag2[0][1]|flag2[1][1]) cout<<max(dp2[0][1],dp2[1][1])<<endl;
	else cout<<-1<<endl;

	return 0;
}
0