結果

問題 No.2805 Go to School
ユーザー Pres1dentPres1dent
提出日時 2024-07-12 22:13:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 1,176 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 216,492 KB
実行使用メモリ 21,972 KB
最終ジャッジ日時 2024-07-16 01:40:13
合計ジャッジ時間 8,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 164 ms
12,672 KB
testcase_05 AC 198 ms
9,604 KB
testcase_06 AC 104 ms
7,180 KB
testcase_07 AC 99 ms
6,944 KB
testcase_08 AC 180 ms
9,252 KB
testcase_09 AC 105 ms
7,212 KB
testcase_10 AC 108 ms
6,940 KB
testcase_11 AC 342 ms
17,916 KB
testcase_12 AC 200 ms
11,840 KB
testcase_13 AC 282 ms
14,576 KB
testcase_14 AC 42 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 158 ms
8,672 KB
testcase_19 AC 90 ms
7,520 KB
testcase_20 AC 229 ms
11,516 KB
testcase_21 AC 279 ms
17,500 KB
testcase_22 AC 121 ms
9,480 KB
testcase_23 AC 200 ms
11,628 KB
testcase_24 AC 206 ms
11,516 KB
testcase_25 AC 63 ms
8,284 KB
testcase_26 AC 229 ms
21,972 KB
testcase_27 AC 151 ms
15,108 KB
testcase_28 AC 13 ms
6,944 KB
testcase_29 AC 24 ms
7,680 KB
testcase_30 AC 84 ms
11,780 KB
testcase_31 AC 109 ms
8,448 KB
testcase_32 AC 228 ms
15,592 KB
testcase_33 AC 260 ms
15,448 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 100 ms
7,852 KB
testcase_37 AC 109 ms
9,088 KB
testcase_38 AC 200 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<ll> dijkstra(vector<vector<pair<int, int>>>& to, int s) {
  using P = tuple<ll, int>;
  priority_queue<P, vector<P>, greater<P>> pq;
  int n = to.size();
  vector<ll> dp(n, LNF);
  dp[s] = 0;
  pq.emplace(0, s);
  while (pq.size()) {
    auto [c, v] = pq.top(); pq.pop();
    if (dp[v] != c) continue;
    for (auto [u, w] : to[v]) {
      if (dp[u] <= c + w) continue;
      dp[u] = c + w;
      pq.emplace(c + w, u);
    }
  }
  return dp;
}

int main() {
  ll n, m, l, s, e; cin >> n >> m >> l >> s >> e;
  vector to(n, vector<pair<int, int>>());
  for (int i = 0; i < m; i++) {
    int u, v, w; cin >> u >> v >> w;
    u--, v--;
    to[u].emplace_back(v, w);
    to[v].emplace_back(u, w);
  }
  vector<int> T(l);
  for (int i = 0; i < l; i++) cin >> T[i], T[i]--;
  auto dp_0 = dijkstra(to, 0);
  auto dp_n = dijkstra(to, n - 1);
  ll ans = LNF;
  for (auto t : T) {
    if (dp_0[t] == LNF or dp_n[t] == LNF) continue;
    if (dp_0[t] <= s + e - 1) {
      ans = min(max(dp_0[t] + 1, s + 1) + dp_n[t], ans);
    }
  }
  if (ans == LNF) ans = -1;
  cout << ans << endl;
}
0