結果

問題 No.2805 Go to School
ユーザー tobbietobbie
提出日時 2024-07-30 22:43:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,663 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 179,980 KB
実行使用メモリ 17,836 KB
最終ジャッジ日時 2024-07-30 22:43:41
合計ジャッジ時間 7,770 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 161 ms
12,740 KB
testcase_05 AC 195 ms
9,112 KB
testcase_06 WA -
testcase_07 AC 101 ms
6,940 KB
testcase_08 AC 172 ms
9,216 KB
testcase_09 WA -
testcase_10 AC 104 ms
6,944 KB
testcase_11 AC 253 ms
16,096 KB
testcase_12 AC 147 ms
10,232 KB
testcase_13 WA -
testcase_14 AC 33 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 52 ms
7,236 KB
testcase_26 WA -
testcase_27 AC 138 ms
14,872 KB
testcase_28 WA -
testcase_29 AC 23 ms
7,504 KB
testcase_30 AC 79 ms
11,544 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i = 0; i < (int)n; i++)
#define INF 1e9

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<int> dijkstra(int N, int s, vector<vector<Edge>> &graph) {
  vector<int> distance(N, INF);
  vector<int> from(N, -1);
  priority_queue<pair<int, int>,
		 vector<pair<int, int>>,
		 greater<pair<int, int>>> q;
  distance[s] = 0;
  q.push({0, s});
  while (!q.empty()) {
    pair<int, int> p = q.top();
    q.pop();
    int path_now = p.first;
    int p_now = p.second;
    if (distance[p_now] < path_now)
      continue;
    for (Edge e : graph[p_now]) {
      int 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<int> d = dijkstra(n, 0, g);
  vector<int> id = dijkstra(n, n-1, g);
  int ans = INF;
  rep(i, n) {
    if (t[i] == 0)
      continue;
    if (d[i] >= s && d[i] <= s + e) {
      ans = d[n-1] + 1;
      break;
    }
    if (d[i] < s) {
      ans = min(s + 1 + id[i], ans);
    }
  }
  if (ans == INF)
    cout << -1 << endl;
  else
    cout << ans << endl;
  return 0;
}
0