結果

問題 No.2805 Go to School
ユーザー tanaka255tanaka255
提出日時 2024-07-12 22:12:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 1,453 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 213,444 KB
実行使用メモリ 24,244 KB
最終ジャッジ日時 2024-07-16 01:40:03
合計ジャッジ時間 6,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,596 KB
testcase_01 AC 4 ms
9,456 KB
testcase_02 AC 5 ms
9,564 KB
testcase_03 AC 4 ms
9,468 KB
testcase_04 AC 74 ms
16,516 KB
testcase_05 AC 88 ms
15,440 KB
testcase_06 AC 52 ms
13,040 KB
testcase_07 AC 45 ms
12,584 KB
testcase_08 AC 70 ms
15,312 KB
testcase_09 AC 52 ms
12,988 KB
testcase_10 AC 45 ms
12,580 KB
testcase_11 AC 189 ms
19,952 KB
testcase_12 AC 108 ms
16,184 KB
testcase_13 AC 156 ms
18,636 KB
testcase_14 AC 24 ms
11,076 KB
testcase_15 AC 4 ms
9,620 KB
testcase_16 AC 5 ms
9,656 KB
testcase_17 AC 4 ms
9,540 KB
testcase_18 AC 71 ms
14,152 KB
testcase_19 AC 53 ms
12,724 KB
testcase_20 AC 115 ms
16,596 KB
testcase_21 AC 157 ms
19,132 KB
testcase_22 AC 69 ms
13,696 KB
testcase_23 AC 105 ms
16,100 KB
testcase_24 AC 103 ms
16,064 KB
testcase_25 AC 35 ms
13,292 KB
testcase_26 AC 132 ms
24,244 KB
testcase_27 AC 65 ms
16,796 KB
testcase_28 AC 8 ms
11,088 KB
testcase_29 AC 12 ms
11,660 KB
testcase_30 AC 38 ms
14,308 KB
testcase_31 AC 54 ms
13,192 KB
testcase_32 AC 105 ms
19,252 KB
testcase_33 AC 147 ms
18,628 KB
testcase_34 AC 5 ms
9,668 KB
testcase_35 AC 4 ms
9,608 KB
testcase_36 AC 56 ms
12,692 KB
testcase_37 AC 59 ms
13,252 KB
testcase_38 AC 116 ms
16,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
template<typename T>
bool chmax(T &a, T b) {
  if (a < b) {
    a = b;
    return true;
  }
  return false;
}
template<typename T>
bool chmin(T &a, T b) {
  if (a > b) {
    a = b;
    return true;
  }
  return false;
}
void solve();
int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  cout << fixed << setprecision(20);
  int t = 1;
  //cin >> t;
  while (t--) {
    solve();
  }
}
int N,M,L,S,E;
vector<pair<int,int>>g[2<<17];
bool flag[2<<17];
vector<ll>dijk(int sv){
  vector<ll>dist(N,(ll)1<<60);
  dist[sv]=0;
  priority_queue<pair<ll,int>,vector<pair<ll,int>>,greater<>>que;
  que.push({0,sv});
  while(!que.empty()){
    auto[d,v]=que.top();
    que.pop();
    if(dist[v]<d)continue;
    for(auto[vv,dd]:g[v]){
      if(chmin(dist[vv],dist[v]+dd)){
        que.push({dist[vv],vv});
      }
    }
  }
  return dist;
}
void solve() {
  cin>>N>>M>>L>>S>>E;
  rep(i,M){
    int a,b,t;cin>>a>>b>>t,--a,--b;
    g[a].emplace_back(b,t);
    g[b].emplace_back(a,t);
  }
  rep(i,L){
    int T;cin>>T,--T;
    flag[T]=1;
  }
  vector dist0=dijk(0),distN=dijk(N-1);
  ll ans=(ll)1<<60;
  rep(i,N){
    if(!flag[i])continue;
    if(dist0[i]==(ll)1<<60)continue;
    if(distN[i]==(ll)1<<60)continue;
    if(S+E<=dist0[i])continue;
    chmin(ans,max(dist0[i],(ll)S)+1+distN[i]);
  }
  if(ans==(ll)1<<60)ans=-1;
  cout<<ans<<endl;
}
0