結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-11 04:05:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,970 bytes
コンパイル時間 1,776 ms
コンパイル使用メモリ 123,872 KB
実行使用メモリ 24,320 KB
最終ジャッジ日時 2024-06-11 00:45:54
合計ジャッジ時間 16,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 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 122 ms
17,664 KB
testcase_05 AC 115 ms
13,824 KB
testcase_06 AC 22 ms
6,272 KB
testcase_07 AC 27 ms
7,168 KB
testcase_08 AC 125 ms
22,016 KB
testcase_09 AC 100 ms
11,776 KB
testcase_10 AC 1,508 ms
6,016 KB
testcase_11 AC 90 ms
15,488 KB
testcase_12 AC 69 ms
9,600 KB
testcase_13 AC 74 ms
17,792 KB
testcase_14 AC 74 ms
7,552 KB
testcase_15 AC 80 ms
17,024 KB
testcase_16 AC 79 ms
7,680 KB
testcase_17 AC 53 ms
16,256 KB
testcase_18 AC 80 ms
18,048 KB
testcase_19 AC 141 ms
21,248 KB
testcase_20 AC 31 ms
7,680 KB
testcase_21 AC 71 ms
10,496 KB
testcase_22 AC 82 ms
7,680 KB
testcase_23 AC 112 ms
18,944 KB
testcase_24 AC 157 ms
24,320 KB
testcase_25 AC 156 ms
24,192 KB
testcase_26 AC 169 ms
24,320 KB
testcase_27 AC 168 ms
24,320 KB
testcase_28 AC 163 ms
24,192 KB
testcase_29 AC 158 ms
24,192 KB
testcase_30 AC 156 ms
24,192 KB
testcase_31 AC 155 ms
24,192 KB
testcase_32 AC 162 ms
24,320 KB
testcase_33 AC 170 ms
24,320 KB
testcase_34 AC 269 ms
8,448 KB
testcase_35 AC 1,371 ms
7,808 KB
testcase_36 AC 1,738 ms
7,424 KB
testcase_37 TLE -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;

template<typename T> using pq = priority_queue<T, vector<T>, greater<T>>;
using ll = long long; 

vector<ll> H;

vector<vector<ll>> dijkstra(vector<vector<ll>> &E, ll start){
 
    ll N = E.size(), t;
    ll from, alt, d;

    pq<tuple<ll, ll, ll>> que;
    vector<vector<ll>> dist(N, vector<ll>(2, 1e18));
    que.push({0, start, 0});
    dist[start][0] = 0;
 
    while(!que.empty()){
        tie(d, from, t) = que.top();
        que.pop();
        if (dist[from][t] < d) continue;
        for (auto to : E[from]){
            if (start == 0){
                if (to < from) continue;
            } 
            else{
                if (to > from) continue;
            }
            if (H[to]>H[from]){
                if (t == 1) continue;
                alt = d - (H[to]-H[from]);
                if (alt < dist[to][1]){
                    dist[to][1] = alt;
                    que.push({dist[to][1], to, 1});
                }
            }
            else{
                alt = d;
                if (alt < dist[to][0]){
                    dist[to][0] = alt;
                    que.push({dist[to][0], to, 0});
                }
            }
        }
    }
 
    return dist;
}

int main(){

    ll N, M, A, B, C, ans;
    cin >> N >> M;
    H.resize(N);
    for (int i=0; i<N; i++) cin >> H[i];
    vector<vector<ll>> E(N), E2(N);
    for (int i=0; i<M; i++){
        cin >> A >> B;
        A--; B--;
        E[A].push_back(B);
        E[B].push_back(A);
    }
    vector<vector<ll>> dist = dijkstra(E, 0);
    ans = min(dist[N-1][0], dist[N-1][1]);
    cout << (ans == 1e18 ? -1 : -ans) << endl;
    dist = dijkstra(E, N-1);
    ans = min(dist[0][0], dist[0][1]);
    cout << (ans == 1e18 ? -1 : -ans) << endl;
}
0