結果

問題 No.2100 [Cherry Alpha C] Two-way Steps
ユーザー t98slidert98slider
提出日時 2022-10-14 22:04:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 2,093 bytes
コンパイル時間 1,913 ms
コンパイル使用メモリ 185,628 KB
実行使用メモリ 30,208 KB
最終ジャッジ日時 2024-06-26 14:32:33
合計ジャッジ時間 7,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 90 ms
22,152 KB
testcase_05 AC 68 ms
17,552 KB
testcase_06 AC 13 ms
7,040 KB
testcase_07 AC 16 ms
7,936 KB
testcase_08 AC 94 ms
26,600 KB
testcase_09 AC 73 ms
15,616 KB
testcase_10 AC 48 ms
9,996 KB
testcase_11 AC 66 ms
18,816 KB
testcase_12 AC 44 ms
12,416 KB
testcase_13 AC 52 ms
20,480 KB
testcase_14 AC 44 ms
10,368 KB
testcase_15 AC 58 ms
20,168 KB
testcase_16 AC 48 ms
11,008 KB
testcase_17 AC 38 ms
18,048 KB
testcase_18 AC 55 ms
20,696 KB
testcase_19 AC 119 ms
26,736 KB
testcase_20 AC 22 ms
8,832 KB
testcase_21 AC 47 ms
13,056 KB
testcase_22 AC 47 ms
10,624 KB
testcase_23 AC 92 ms
23,128 KB
testcase_24 AC 132 ms
30,208 KB
testcase_25 AC 140 ms
30,172 KB
testcase_26 AC 132 ms
30,208 KB
testcase_27 AC 134 ms
30,080 KB
testcase_28 AC 137 ms
30,132 KB
testcase_29 AC 137 ms
30,200 KB
testcase_30 AC 135 ms
30,196 KB
testcase_31 AC 135 ms
30,128 KB
testcase_32 AC 129 ms
30,132 KB
testcase_33 AC 131 ms
30,172 KB
testcase_34 AC 78 ms
13,692 KB
testcase_35 AC 74 ms
12,572 KB
testcase_36 AC 72 ms
12,608 KB
testcase_37 AC 70 ms
12,220 KB
testcase_38 AC 79 ms
13,108 KB
testcase_39 AC 63 ms
11,952 KB
testcase_40 AC 62 ms
11,796 KB
testcase_41 AC 65 ms
11,980 KB
testcase_42 AC 64 ms
11,700 KB
testcase_43 AC 64 ms
11,684 KB
testcase_44 AC 68 ms
27,036 KB
testcase_45 AC 70 ms
27,008 KB
testcase_46 AC 62 ms
26,904 KB
testcase_47 AC 63 ms
27,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int  n, M, u, v;
    ll INF = 1ll << 30;
    cin >> n >> M;
    vector<vector<pair<int,ll>>> g1(2 * n), g2(2 * n);
    vector<int> h(n);
    for(int i = 0; i < n; i++){
        cin >> h[i];
        g1[i].emplace_back(i + n, 0);
        g2[i].emplace_back(i + n, 0);
    }
    for(int i = 0; i < M; i++){
        cin >> u >> v;
        u--, v--;
        if(h[u] > h[v])swap(u, v);
        if(u < v){
            g1[u].emplace_back(n + v, abs(v - u) * INF - (h[v] - h[u]));
            g2[v + n].emplace_back(u, abs(v - u) * INF);
        }else{
            g2[u].emplace_back(n + v, abs(v - u) * INF - (h[v] - h[u]));
            g1[v + n].emplace_back(u, abs(v - u) * INF);
        }
    }
    priority_queue<pair<ll, int>, vector<pair<ll,int>>, greater<pair<ll,int>>> pq;
    ll d;
    vector<ll> dist1(2 * n, 1ll << 61), dist2(2 * n, 1ll << 61);
    dist1[0] = 0;
    pq.emplace(0, 0);
    while(!pq.empty()){
        tie(d, v) = pq.top();
        pq.pop();
        //cerr << d << " " << v << '\n';
        if(d > dist1[v])continue;
        for(auto &&p:g1[v]){
            if(d + p.second >= dist1[p.first])continue;
            dist1[p.first] = d + p.second;
            pq.emplace(dist1[p.first], p.first);
        }
    }
    dist2[n - 1] = 0;
    pq.emplace(0, n - 1);
    while(!pq.empty()){
        tie(d, v) = pq.top();
        pq.pop();
        //cerr << d << " " << v << '\n';
        if(d > dist2[v])continue;
        for(auto &&p:g2[v]){
            if(d + p.second >= dist2[p.first])continue;
            dist2[p.first] = d + p.second;
            pq.emplace(dist2[p.first], p.first);
        }
    }
    //cerr << "enter" << '\n';
    ll ans = min(dist1[n - 1], dist1[2 * n - 1]);
    if(ans >> 61 & 1){
        cout << -1 << '\n';
    }else{
        cout << INF * (n - 1) - ans << '\n';
    }
    ans = min(dist2[0], dist2[n]);
    if(ans >> 61 & 1){
        cout << -1 << '\n';
    }else{
        cout << INF * (n - 1) - ans << '\n';
    }
}
0