結果

問題 No.2805 Go to School
ユーザー tobbietobbie
提出日時 2024-07-31 20:07:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 1,679 bytes
コンパイル時間 1,784 ms
コンパイル使用メモリ 180,152 KB
実行使用メモリ 23,264 KB
最終ジャッジ日時 2024-07-31 20:07:16
合計ジャッジ時間 11,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 173 ms
13,644 KB
testcase_05 AC 240 ms
9,680 KB
testcase_06 AC 111 ms
7,300 KB
testcase_07 AC 108 ms
6,944 KB
testcase_08 AC 189 ms
9,272 KB
testcase_09 AC 113 ms
7,340 KB
testcase_10 AC 117 ms
6,940 KB
testcase_11 AC 403 ms
18,908 KB
testcase_12 AC 214 ms
12,304 KB
testcase_13 AC 314 ms
15,188 KB
testcase_14 AC 46 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 154 ms
8,852 KB
testcase_19 AC 98 ms
7,864 KB
testcase_20 AC 277 ms
11,872 KB
testcase_21 AC 328 ms
18,984 KB
testcase_22 AC 142 ms
9,896 KB
testcase_23 AC 225 ms
11,992 KB
testcase_24 AC 229 ms
11,652 KB
testcase_25 AC 68 ms
8,552 KB
testcase_26 AC 252 ms
23,264 KB
testcase_27 AC 168 ms
16,408 KB
testcase_28 AC 14 ms
7,380 KB
testcase_29 AC 27 ms
8,236 KB
testcase_30 AC 93 ms
12,764 KB
testcase_31 AC 124 ms
8,832 KB
testcase_32 AC 241 ms
16,228 KB
testcase_33 AC 294 ms
16,452 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 111 ms
8,192 KB
testcase_37 AC 126 ms
9,700 KB
testcase_38 AC 244 ms
14,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i = 0; i < (int)n; i++)
#define INF 1e18
using ll = long long int;

struct Edge {
  int to;
  int dist;
  Edge(int to, int dist) : to(to), dist(dist) {}
  bool operator=(const Edge &rhs) const {
    return to == rhs.to;
  }
};

vector<ll> dijkstra(int N, int s, vector<vector<Edge>> &graph) {
  vector<ll> distance(N, INF);
  vector<int> from(N, -1);
  priority_queue<pair<ll, int>,
		 vector<pair<ll, int>>,
		 greater<pair<ll, int>>> q;
  distance[s] = 0;
  q.push({0, s});
  while (!q.empty()) {
    pair<ll, int> p = q.top();
    q.pop();
    ll path_now = p.first;
    int p_now = p.second;
    if (distance[p_now] < path_now)
      continue;
    for (Edge e : graph[p_now]) {
      ll path_new = path_now + e.dist;
      int p_new = e.to;
      if (path_new < distance[p_new]) {
	distance[p_new] = path_new;
	from[p_new] = p_now;
	q.push({path_new, p_new});
      }
    }
  }
  return distance;
}

int main() {
  int n, m, l, s, e;
  cin >> n >> m >> l >> s >> e;
  vector<vector<Edge>> g(n);
  rep(i, m) {
    int a, b, t;
    cin >> a >> b >> t;
    a--; b--;
    g[a].push_back(Edge(b, t));
    g[b].push_back(Edge(a, t));
  }
  vector<int> t(n, 0);
  rep(i, l) {
    int ti;
    cin >> ti;
    ti--;
    t[ti] = 1;
  }
  vector<ll> d = dijkstra(n, 0, g);
  vector<ll> r = dijkstra(n, n-1, g);
  ll ans = INF;
  rep(i, n) {
    if (t[i] == 0)
      continue;
    if (d[i] >= s && d[i] <= s + e) {
      ans = min(d[i] + 1 + r[i], ans);
    }
    if (d[i] < s) {
      ans = min(s + 1 + r[i], ans);
    }
  }
  if (ans == INF)
    cout << -1 << endl;
  else
    cout << ans << endl;
  return 0;
}
0