結果

問題 No.2805 Go to School
ユーザー kusaf_kusaf_
提出日時 2024-07-12 21:48:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 1,176 bytes
コンパイル時間 3,210 ms
コンパイル使用メモリ 257,048 KB
実行使用メモリ 23,760 KB
最終ジャッジ日時 2024-07-16 01:39:06
合計ジャッジ時間 7,732 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 79 ms
16,768 KB
testcase_05 AC 101 ms
14,044 KB
testcase_06 AC 58 ms
9,148 KB
testcase_07 AC 49 ms
9,132 KB
testcase_08 AC 81 ms
14,460 KB
testcase_09 AC 57 ms
9,196 KB
testcase_10 AC 48 ms
8,928 KB
testcase_11 AC 264 ms
21,120 KB
testcase_12 AC 140 ms
14,528 KB
testcase_13 AC 203 ms
18,488 KB
testcase_14 AC 25 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 86 ms
11,340 KB
testcase_19 AC 59 ms
8,924 KB
testcase_20 AC 136 ms
15,532 KB
testcase_21 AC 225 ms
20,040 KB
testcase_22 AC 79 ms
10,844 KB
testcase_23 AC 133 ms
14,496 KB
testcase_24 AC 133 ms
14,564 KB
testcase_25 AC 45 ms
8,708 KB
testcase_26 AC 161 ms
23,760 KB
testcase_27 AC 84 ms
16,464 KB
testcase_28 AC 8 ms
6,940 KB
testcase_29 AC 13 ms
7,680 KB
testcase_30 AC 40 ms
12,352 KB
testcase_31 AC 61 ms
9,984 KB
testcase_32 AC 114 ms
18,752 KB
testcase_33 AC 161 ms
18,508 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 62 ms
9,188 KB
testcase_37 AC 66 ms
10,240 KB
testcase_38 AC 156 ms
15,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

  ll N, M, L, S, E;
  cin >> N >> M >> L >> S >> E;

  vector<vector<pair<ll, ll>>> g(N);
  for(ll i = 0, u, v, w; i < M; i++) {
    cin >> u >> v >> w;
    u--, v--;
    g[u].emplace_back(v, w);
    g[v].emplace_back(u, w);
  }

  vector<ll> T(L);
  for(auto &i : T) {
    cin >> i;
    i--;
  }

  auto Dijkstra = [&](ll s) {
    auto chmin = [&](auto &a, const auto &b) { return a > b ? (a = b, true) : false; };
    vector<ll> d(N, 1e18);
    d[s] = 0;
    priority_queue<pair<ll, ll>, vector<pair<ll, ll>>, greater<pair<ll, ll>>> q;
    q.emplace(0, s);
    while(!q.empty()) {
      auto [tmp, v] = q.top();
      q.pop();
      if(tmp > d[v]) { continue; }
      for(auto &[nv, c] : g[v]) {
        if(chmin(d[nv], d[v] + c)) { q.emplace(d[nv], nv); }
      }
    }
    return d;
  };

  vector<ll> d1 = Dijkstra(0), d2 = Dijkstra(N - 1);
  ll ans = 1e18;
  for(auto &i : T) {
    if(d1[i] >= S + E) { continue; }
    if(d1[i] < S) { d1[i] = S; }
    ans = min(ans, d1[i] + d2[i] + 1);
  }

  cout << (ans > 1e17 ? -1 : ans) << "\n";
}
0