結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー kotatsugamekotatsugame
提出日時 2022-10-15 00:47:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 1,053 bytes
コンパイル時間 893 ms
コンパイル使用メモリ 72,296 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-06-26 18:45:18
合計ジャッジ時間 7,106 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,528 KB
testcase_01 AC 3 ms
6,656 KB
testcase_02 AC 4 ms
6,400 KB
testcase_03 AC 4 ms
6,400 KB
testcase_04 AC 132 ms
10,496 KB
testcase_05 AC 107 ms
9,600 KB
testcase_06 AC 21 ms
7,296 KB
testcase_07 AC 25 ms
7,424 KB
testcase_08 AC 128 ms
11,008 KB
testcase_09 AC 103 ms
9,344 KB
testcase_10 AC 56 ms
7,680 KB
testcase_11 AC 95 ms
9,728 KB
testcase_12 AC 72 ms
8,576 KB
testcase_13 AC 76 ms
9,984 KB
testcase_14 AC 64 ms
8,192 KB
testcase_15 AC 83 ms
9,856 KB
testcase_16 AC 71 ms
8,320 KB
testcase_17 AC 51 ms
8,960 KB
testcase_18 AC 80 ms
9,728 KB
testcase_19 AC 147 ms
11,264 KB
testcase_20 AC 34 ms
7,680 KB
testcase_21 AC 70 ms
8,704 KB
testcase_22 AC 68 ms
8,320 KB
testcase_23 AC 117 ms
10,496 KB
testcase_24 AC 166 ms
11,904 KB
testcase_25 AC 168 ms
11,904 KB
testcase_26 AC 169 ms
11,904 KB
testcase_27 AC 166 ms
11,904 KB
testcase_28 AC 168 ms
11,904 KB
testcase_29 AC 165 ms
11,776 KB
testcase_30 AC 166 ms
11,776 KB
testcase_31 AC 166 ms
11,776 KB
testcase_32 AC 166 ms
11,904 KB
testcase_33 AC 167 ms
11,904 KB
testcase_34 AC 93 ms
8,960 KB
testcase_35 AC 85 ms
8,576 KB
testcase_36 AC 84 ms
8,448 KB
testcase_37 AC 80 ms
8,576 KB
testcase_38 AC 90 ms
8,576 KB
testcase_39 AC 72 ms
9,088 KB
testcase_40 AC 72 ms
9,088 KB
testcase_41 AC 73 ms
9,088 KB
testcase_42 AC 71 ms
8,960 KB
testcase_43 AC 73 ms
8,960 KB
testcase_44 AC 100 ms
11,648 KB
testcase_45 AC 99 ms
11,648 KB
testcase_46 AC 99 ms
11,648 KB
testcase_47 AC 99 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int N,M;
vector<int>G[1<<17];
int H[1<<17];
long dist[1<<17][2];
int main()
{
	cin>>N>>M;
	for(int i=0;i<N;i++)cin>>H[i];
	for(int i=0;i<M;i++)
	{
		int a,b;cin>>a>>b;a--,b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	{//0
		for(int i=0;i<N;i++)dist[i][0]=dist[i][1]=-1e18;
		dist[0][0]=0;
		for(int i=0;i<N;i++)
		{
			for(int j:G[i])if(i<j)
			{
				if(H[i]<H[j])
				{
					dist[j][1]=max(dist[j][1],dist[i][0]+H[j]-H[i]);
				}
				else
				{
					dist[j][0]=max(dist[j][0],max(dist[i][0],dist[i][1]));
				}
			}
		}
		long ans=max(dist[N-1][0],dist[N-1][1]);
		if(ans<0)ans=-1;
		cout<<ans<<endl;
	}
	{//0
		for(int i=0;i<N;i++)dist[i][0]=dist[i][1]=-1e18;
		dist[N-1][0]=0;
		for(int i=N;i--;)
		{
			for(int j:G[i])if(i>j)
			{
				if(H[i]<H[j])
				{
					dist[j][1]=max(dist[j][1],dist[i][0]+H[j]-H[i]);
				}
				else
				{
					dist[j][0]=max(dist[j][0],max(dist[i][0],dist[i][1]));
				}
			}
		}
		long ans=max(dist[0][0],dist[0][1]);
		if(ans<0)ans=-1;
		cout<<ans<<endl;
	}
}
0