結果

問題 No.2805 Go to School
ユーザー haihamabossuhaihamabossu
提出日時 2024-07-13 19:48:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 1,737 bytes
コンパイル時間 2,506 ms
コンパイル使用メモリ 223,428 KB
実行使用メモリ 28,112 KB
最終ジャッジ日時 2024-07-16 01:42:31
合計ジャッジ時間 8,941 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 175 ms
27,520 KB
testcase_05 AC 242 ms
24,192 KB
testcase_06 AC 109 ms
13,440 KB
testcase_07 AC 108 ms
14,464 KB
testcase_08 AC 233 ms
25,088 KB
testcase_09 AC 109 ms
13,824 KB
testcase_10 AC 128 ms
15,744 KB
testcase_11 AC 350 ms
28,112 KB
testcase_12 AC 201 ms
19,968 KB
testcase_13 AC 311 ms
26,752 KB
testcase_14 AC 32 ms
7,040 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 156 ms
16,896 KB
testcase_19 AC 88 ms
11,392 KB
testcase_20 AC 252 ms
24,192 KB
testcase_21 AC 324 ms
26,240 KB
testcase_22 AC 121 ms
13,696 KB
testcase_23 AC 222 ms
19,712 KB
testcase_24 AC 231 ms
20,480 KB
testcase_25 AC 48 ms
8,920 KB
testcase_26 AC 215 ms
24,948 KB
testcase_27 AC 155 ms
19,328 KB
testcase_28 AC 9 ms
6,656 KB
testcase_29 AC 19 ms
7,552 KB
testcase_30 AC 71 ms
14,188 KB
testcase_31 AC 122 ms
13,696 KB
testcase_32 AC 221 ms
26,724 KB
testcase_33 AC 238 ms
27,008 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 93 ms
11,648 KB
testcase_37 AC 104 ms
13,312 KB
testcase_38 AC 205 ms
21,240 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++)

const ll INF = 1e18;
void solve() {
  ll n, m, L, S, E;
  cin >> n >> m >> L >> S >> E;
  vector<vector<pair<ll, ll>>> g(n);
  {
    map<pair<ll, ll>, ll> mp;
    rep(mi, m) {
      ll a, b, t;
      cin >> a >> b >> t, a--, b--;
      pair<ll, ll> k = {a, b};
      if (mp.count(k) == 1)
        t = min(t, mp[k]);
      mp[k] = t;
    }
    for (const auto &[k, t] : mp) {
      const auto [a, b] = k;
      g[a].emplace_back(b, t);
      g[b].emplace_back(a, t);
    }
  }
  vector<bool> f(n, false);
  rep(i, L) {
    ll t;
    cin >> t, t--;
    f[t] = true;
  }
  priority_queue<pair<ll, ll>> que;
  vector<ll> dist(n, INF);
  que.emplace(0, 0);
  dist[0] = 0;
  rep(ti, 2) {
    while (!que.empty()) {
      auto [cd, u] = que.top();
      que.pop();
      cd *= -1;
      if (dist[u] < cd)
        continue;
      for (const auto &[v, t] : g[u]) {
        ll nd = cd + t;
        if (dist[v] <= nd)
          continue;
        dist[v] = nd;
        que.emplace(-dist[v], v);
      }
    }
    if (ti)
      break;
    priority_queue<pair<ll, ll>> nex;
    rep(i, n) {
      if (!f[i]) {
        dist[i] = INF;
      } else if (dist[i] <= S) {
        dist[i] = S + 1;
      } else if (dist[i] < S + E) {
        dist[i] += 1;
      } else {
        dist[i] = INF;
      }
      if (dist[i] < INF) {
        nex.emplace(-dist[i], i);
      }
    }
    swap(que, nex);
  }
  ll ans = dist[n - 1];
  if (ans == INF)
    ans = -1;
  cout << ans << '\n';
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0