結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-11 04:08:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,113 bytes
コンパイル時間 1,765 ms
コンパイル使用メモリ 129,132 KB
実行使用メモリ 31,352 KB
最終ジャッジ日時 2024-06-11 00:46:05
合計ジャッジ時間 8,844 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 153 ms
22,204 KB
testcase_05 AC 122 ms
16,908 KB
testcase_06 AC 25 ms
7,552 KB
testcase_07 AC 31 ms
8,452 KB
testcase_08 AC 162 ms
28,676 KB
testcase_09 AC 115 ms
14,088 KB
testcase_10 WA -
testcase_11 AC 117 ms
19,536 KB
testcase_12 WA -
testcase_13 AC 100 ms
23,324 KB
testcase_14 WA -
testcase_15 AC 107 ms
22,084 KB
testcase_16 WA -
testcase_17 AC 76 ms
21,092 KB
testcase_18 AC 108 ms
23,468 KB
testcase_19 AC 183 ms
27,244 KB
testcase_20 AC 40 ms
9,216 KB
testcase_21 AC 79 ms
12,696 KB
testcase_22 WA -
testcase_23 AC 146 ms
24,352 KB
testcase_24 AC 202 ms
31,216 KB
testcase_25 AC 203 ms
31,352 KB
testcase_26 AC 209 ms
31,220 KB
testcase_27 AC 203 ms
31,348 KB
testcase_28 AC 210 ms
31,352 KB
testcase_29 AC 204 ms
31,132 KB
testcase_30 AC 208 ms
31,280 KB
testcase_31 AC 207 ms
31,324 KB
testcase_32 AC 205 ms
31,300 KB
testcase_33 AC 205 ms
31,348 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 139 ms
29,744 KB
testcase_45 AC 140 ms
29,852 KB
testcase_46 AC 136 ms
29,804 KB
testcase_47 AC 135 ms
29,860 KB
権限があれば一括ダウンロードができます

ソースコード

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});
    vector<vector<bool>> visit(N, vector<bool>(2));
    dist[start][0] = 0;
    visit[start][0] = 0;
 
    while(!que.empty()){
        tie(d, from, t) = que.top();
        que.pop();
        if (dist[from][t] < d) continue;
        if (visit[from][t]) continue;
        visit[from][t] = 1;
        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