結果

問題 No.2805 Go to School
ユーザー GOTKAKOGOTKAKO
提出日時 2024-07-12 21:31:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 2,159 bytes
コンパイル時間 2,764 ms
コンパイル使用メモリ 218,200 KB
実行使用メモリ 20,988 KB
最終ジャッジ日時 2024-07-16 01:37:47
合計ジャッジ時間 6,247 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 73 ms
15,872 KB
testcase_05 AC 89 ms
13,568 KB
testcase_06 AC 48 ms
8,960 KB
testcase_07 AC 42 ms
8,960 KB
testcase_08 AC 72 ms
14,208 KB
testcase_09 AC 46 ms
8,960 KB
testcase_10 AC 45 ms
8,960 KB
testcase_11 AC 168 ms
19,692 KB
testcase_12 AC 92 ms
13,688 KB
testcase_13 AC 153 ms
17,212 KB
testcase_14 AC 20 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 68 ms
10,880 KB
testcase_19 AC 54 ms
8,876 KB
testcase_20 AC 120 ms
16,020 KB
testcase_21 AC 190 ms
20,164 KB
testcase_22 AC 74 ms
10,852 KB
testcase_23 AC 113 ms
14,448 KB
testcase_24 AC 109 ms
14,468 KB
testcase_25 AC 26 ms
8,152 KB
testcase_26 AC 92 ms
20,988 KB
testcase_27 AC 72 ms
16,224 KB
testcase_28 AC 7 ms
6,944 KB
testcase_29 AC 11 ms
7,680 KB
testcase_30 AC 36 ms
12,160 KB
testcase_31 AC 71 ms
10,592 KB
testcase_32 AC 111 ms
19,384 KB
testcase_33 AC 120 ms
17,868 KB
testcase_34 AC 2 ms
6,948 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 55 ms
9,088 KB
testcase_37 AC 58 ms
10,112 KB
testcase_38 AC 99 ms
15,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<long long> dijkstra(vector<vector<pair<int,long long>>> &Graph,int start){
int N = Graph.size();
//O((V+E)logV) 一般最短経路魔法.
long long inf = 3e18;
    vector<bool> used(N);
    vector<long long> ret(N,inf);
    priority_queue<pair<long long,int>,vector<pair<long long,int>>,greater<pair<long long,int>>> Q;
    ret.at(start) = 0; Q.push({0,start});
    while(Q.size()){
        auto[nowd,pos] = Q.top(); Q.pop();
        if(used.at(pos)) continue;
        used.at(pos) = true;
        for(auto [to,w] : Graph.at(pos)){
            if(ret.at(to) > nowd+w){
                ret.at(to) = nowd+w;
                Q.push({ret.at(to),to});
            }
        }
    }
    return ret;
}
vector<long long> dijkstra2(vector<vector<pair<int,long long>>> &Graph,int start){
    int N = Graph.size();
    //O(V^2) 密グラフ専用.
    long long inf = 3e18;
    vector<bool> used(N);
    vector<long long> ret(N,inf);
    ret.at(start) = 0;
    while(true){
        long long nowd = inf,pos = -1;
        for(int i=0; i<N; i++){
            if(used.at(i)) continue;
            if(nowd > ret.at(i)) nowd = ret.at(i),pos = i;
        }
        if(pos == -1) break;
        used.at(pos) = true;
 
        for(auto [to,w] : Graph.at(pos)){if(ret.at(to) > nowd+w) ret.at(to) = nowd+w;}
    }
    return ret;
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    long long N,M,L,S,E; cin >> N >> M >> L >> S >> E;
    vector<vector<pair<int,long long>>> Graph(N+1);
    for(int i=0; i<M; i++){
        int u,v; cin >> u >> v;
        u--; v--;
        int w; cin >> w;
        Graph.at(u).push_back({v,w});
        Graph.at(v).push_back({u,w});
    }
    vector<int> T(L);
    for(auto &t : T) cin >> t,t--;

    auto dist = dijkstra(Graph,0);
    if(dist.at(N-1) < S+E){cout << max(S+1,dist.at(N-1)+1) << "\n"; return 0;}

    for(auto &t : T){
        if(dist.at(t) >= S+E) continue;
        Graph.at(N).push_back({t,max(S+1,dist.at(t)+1)});
    }
    auto dist2 = dijkstra(Graph,N);
    if(dist2.at(N-1) >= 1e18) cout << -1 << "\n";
    else cout << dist2.at(N-1) << "\n";

}
0