結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー twooimp2twooimp2
提出日時 2024-03-06 21:33:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 1,342 bytes
コンパイル時間 7,304 ms
コンパイル使用メモリ 303,712 KB
実行使用メモリ 21,996 KB
最終ジャッジ日時 2024-09-29 18:36:35
合計ジャッジ時間 11,521 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 91 ms
16,000 KB
testcase_05 AC 67 ms
12,672 KB
testcase_06 AC 13 ms
6,816 KB
testcase_07 AC 16 ms
6,820 KB
testcase_08 AC 94 ms
19,840 KB
testcase_09 AC 65 ms
11,008 KB
testcase_10 AC 25 ms
6,820 KB
testcase_11 AC 61 ms
14,080 KB
testcase_12 AC 42 ms
9,088 KB
testcase_13 AC 52 ms
16,000 KB
testcase_14 AC 33 ms
7,040 KB
testcase_15 AC 55 ms
15,360 KB
testcase_16 AC 37 ms
7,424 KB
testcase_17 AC 37 ms
14,464 KB
testcase_18 AC 55 ms
16,128 KB
testcase_19 AC 113 ms
19,328 KB
testcase_20 AC 21 ms
7,168 KB
testcase_21 AC 41 ms
9,856 KB
testcase_22 AC 35 ms
7,296 KB
testcase_23 AC 87 ms
17,152 KB
testcase_24 AC 127 ms
21,808 KB
testcase_25 AC 127 ms
21,888 KB
testcase_26 AC 124 ms
21,848 KB
testcase_27 AC 136 ms
21,828 KB
testcase_28 AC 125 ms
21,960 KB
testcase_29 AC 123 ms
21,856 KB
testcase_30 AC 122 ms
21,864 KB
testcase_31 AC 121 ms
21,808 KB
testcase_32 AC 124 ms
21,840 KB
testcase_33 AC 117 ms
21,996 KB
testcase_34 AC 45 ms
8,320 KB
testcase_35 AC 37 ms
7,552 KB
testcase_36 AC 36 ms
7,168 KB
testcase_37 AC 34 ms
7,424 KB
testcase_38 AC 40 ms
7,552 KB
testcase_39 AC 32 ms
8,192 KB
testcase_40 AC 31 ms
8,192 KB
testcase_41 AC 31 ms
8,192 KB
testcase_42 AC 31 ms
8,192 KB
testcase_43 AC 31 ms
8,192 KB
testcase_44 AC 57 ms
20,480 KB
testcase_45 AC 58 ms
20,608 KB
testcase_46 AC 56 ms
20,480 KB
testcase_47 AC 55 ms
20,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;

void IO(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
}

int main(){
  IO();
  ll n,m;
  cin>>n>>m;
  vector<ll> h(n);
  for(ll i=0;i<n;i++){
    cin>>h[i];
  }
  vector<vector<ll>> G(n);
  for(ll i=0;i<m;i++){
    ll x,y;
    cin>>x>>y;
    x--;
    y--;
    G[x].push_back(y);
    G[y].push_back(x);
  }
  vector<vector<ll>> dp(n,vector<ll>(2,-1e18));
  dp[0][0]=0;
  for(ll i=0;i<n;i++){
    for(ll j:G[i]){
      if(i<j){
        if(h[i]<h[j]){
          dp[j][1]=max(dp[j][1],dp[i][0]+h[j]-h[i]);
        }else{
          dp[j][0]=max(dp[j][0],max(dp[i][0],dp[i][1]));
        }
      }
    }
  }
  vector<vector<ll>> dp2(n,vector<ll>(2,-1e18));
  dp2[n-1][0]=0;
  for(ll i=n-1;i>=0;i--){
    for(ll j:G[i]){
      if(i>j){
        if(h[i]<h[j]){
          dp2[j][1]=max(dp2[j][1],dp2[i][0]+h[j]-h[i]);
        }else{
          dp2[j][0]=max(dp2[j][0],max(dp2[i][0],dp2[i][1]));
        }
      }
    }
  }
  ll ans1=max(dp[n-1][0],dp[n-1][1]);
  if(ans1<0){
    cout<<-1<<endl;
  }else{
    cout<<ans1<<endl;
  }
  ll ans2=max(dp2[0][0],dp2[0][1]);
  if(ans2<0){
    cout<<-1<<endl;
  }else{
    cout<<ans2<<endl;
  }
}
0