結果

問題 No.2805 Go to School
ユーザー zeta7532zeta7532
提出日時 2024-07-09 21:06:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 1,531 bytes
コンパイル時間 2,460 ms
コンパイル使用メモリ 215,636 KB
実行使用メモリ 22,236 KB
最終ジャッジ日時 2024-07-16 01:36:42
合計ジャッジ時間 8,722 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 1 ms
5,376 KB
testcase_04 AC 177 ms
16,640 KB
testcase_05 AC 213 ms
14,092 KB
testcase_06 AC 107 ms
9,212 KB
testcase_07 AC 109 ms
9,212 KB
testcase_08 AC 187 ms
14,360 KB
testcase_09 AC 110 ms
9,420 KB
testcase_10 AC 113 ms
9,148 KB
testcase_11 AC 362 ms
21,016 KB
testcase_12 AC 216 ms
14,600 KB
testcase_13 AC 303 ms
18,592 KB
testcase_14 AC 42 ms
6,016 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 155 ms
11,396 KB
testcase_19 AC 95 ms
8,796 KB
testcase_20 AC 239 ms
15,680 KB
testcase_21 AC 315 ms
20,216 KB
testcase_22 AC 128 ms
10,596 KB
testcase_23 AC 219 ms
14,448 KB
testcase_24 AC 222 ms
14,364 KB
testcase_25 AC 64 ms
8,556 KB
testcase_26 AC 242 ms
22,236 KB
testcase_27 AC 162 ms
16,256 KB
testcase_28 AC 13 ms
6,912 KB
testcase_29 AC 23 ms
7,680 KB
testcase_30 AC 88 ms
11,944 KB
testcase_31 AC 117 ms
9,984 KB
testcase_32 AC 231 ms
18,688 KB
testcase_33 AC 278 ms
18,568 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 103 ms
8,948 KB
testcase_37 AC 114 ms
10,112 KB
testcase_38 AC 234 ms
15,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;
using ll = long long;
const ll mod = 998244353;
#define fi first
#define se second
#define rep(i,n) for(ll i=0;i<n;i++)
#define all(x) x.begin(),x.end()
#define faster ios::sync_with_stdio(false);cin.tie(nullptr)

using P = pair<ll,ll>;

struct Edge{
    ll to;
    ll cost;
};

using Graph = vector<vector<Edge>>;
const ll INF = 1LL<<60;

void dijkstra(const Graph &G,ll s,vector<ll> &dis){
    ll N=G.size();
    dis.assign(N,INF);
    priority_queue<P,vector<P>,greater<P>> pq;
    dis[s]=0;
    pq.emplace(dis[s],s);
    while(!pq.empty()){
        P p=pq.top();
        pq.pop();
        ll v=p.se;
        if(p.fi>dis[v]) continue;
        for(auto &e:G[v]){
            if(dis[e.to]>dis[v]+e.cost){
                dis[e.to]=dis[v]+e.cost;
                pq.emplace(dis[e.to],e.to);
            }
        }
    }
}

int main() {
    ll N,M,L,S,E;
    cin >> N >> M >> L >> S >> E;
    ll ans=INF;
    Graph G(N);
    rep(i,M){
        ll a,b,t;
        cin >> a >> b >> t;
        G[a-1].push_back({b-1,t});
        G[b-1].push_back({a-1,t});
    }
    vector<ll> dis1,dis2;
    dijkstra(G,0,dis1);
    dijkstra(G,N-1,dis2);
    rep(i,L){
        ll t;
        cin >> t;
        t--;
        if(dis1[t]<=S+E-1){
            ans=min(ans,max(S,dis1[t])+1+dis2[t]);
        }
    }
    if(ans==INF){
        cout << -1 << endl;
    }else{
        cout << ans << endl;
    }
    return 0;
}
0