結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー nystnyst
提出日時 2022-10-14 23:11:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,670 bytes
コンパイル時間 1,547 ms
コンパイル使用メモリ 106,972 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-26 17:03:38
合計ジャッジ時間 7,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 127 ms
8,576 KB
testcase_05 AC 105 ms
7,296 KB
testcase_06 AC 18 ms
5,376 KB
testcase_07 AC 23 ms
5,376 KB
testcase_08 AC 130 ms
9,600 KB
testcase_09 AC 100 ms
6,784 KB
testcase_10 WA -
testcase_11 AC 90 ms
7,424 KB
testcase_12 AC 68 ms
5,888 KB
testcase_13 AC 77 ms
8,064 KB
testcase_14 AC 64 ms
5,376 KB
testcase_15 AC 85 ms
7,936 KB
testcase_16 AC 70 ms
5,376 KB
testcase_17 AC 49 ms
7,040 KB
testcase_18 AC 75 ms
8,192 KB
testcase_19 AC 160 ms
9,600 KB
testcase_20 AC 32 ms
5,376 KB
testcase_21 AC 70 ms
6,144 KB
testcase_22 AC 66 ms
5,376 KB
testcase_23 AC 114 ms
8,704 KB
testcase_24 AC 172 ms
10,496 KB
testcase_25 AC 173 ms
10,496 KB
testcase_26 AC 171 ms
10,624 KB
testcase_27 AC 170 ms
10,624 KB
testcase_28 AC 166 ms
10,624 KB
testcase_29 AC 175 ms
10,624 KB
testcase_30 AC 167 ms
10,752 KB
testcase_31 AC 168 ms
10,752 KB
testcase_32 AC 183 ms
10,624 KB
testcase_33 AC 170 ms
10,752 KB
testcase_34 AC 96 ms
6,016 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 94 ms
5,504 KB
testcase_39 AC 71 ms
6,016 KB
testcase_40 AC 73 ms
5,888 KB
testcase_41 AC 71 ms
6,144 KB
testcase_42 AC 71 ms
6,016 KB
testcase_43 AC 71 ms
6,016 KB
testcase_44 AC 106 ms
10,368 KB
testcase_45 AC 101 ms
10,368 KB
testcase_46 AC 98 ms
10,368 KB
testcase_47 AC 98 ms
10,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <iomanip>
#include <algorithm>
#include <map>
#include <cmath>
#include <bitset>
#include <string>
#include <queue>
using namespace std;

int main(){
    int n,m;
    cin >> n >> m;
    vector<long long> h(n);
    for(int i=0;i<n;i++) cin >> h[i];
    vector<vector<int>> list(n);

    for(int i=0;i<m;i++){
        int x,y;cin >> x >> y;
        x--;y--;
        list[x].push_back(y);
        list[y].push_back(x);
    }

    vector<long long> dp(n,-1);
    vector<bool> state(n,false); // その階段にくるときに上がったか
    dp[0]=0;
    for(int i =0;i<n;i++){
        if(dp[i]!=-1){
            for(auto x:list[i]){
                if(x<i) continue;
                if(h[i]<h[x] && state[i] == false && dp[x] < dp[i]+(h[x]-h[i])) {
                    dp[x] = dp[i]+(h[x]-h[i]);
                    state[x] = true;
                }else if(h[x]<h[i] && dp[x]<dp[i]){
                    dp[x] = dp[i];
                    state[x] = false;
                }
            }
        }
    }
    cout << dp[n-1] << endl;

    dp.clear();
    dp.resize(n,-1);
    state.clear();
    state.resize(n,false);

    dp[n-1]=0;
    for(int i =n-1;0<=i;i--){
        if(dp[i]!=-1){
            for(auto x:list[i]){
                if(i<x) continue;
                if(h[i]<h[x] && state[i] == false && dp[x] < dp[i]+(h[x]-h[i])) {
                    dp[x] = dp[i]+(h[x]-h[i]);
                    state[x] = true;
                }else if(h[x]<h[i] && dp[x]<dp[i]){
                    dp[x] = dp[i];
                    state[x] = false;
                }
            }
        }
    }
    cout << dp[0] << endl;

}
0