結果

問題 No.2805 Go to School
ユーザー 👑 emthrmemthrm
提出日時 2024-07-12 21:48:48
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 2,091 bytes
コンパイル時間 3,144 ms
コンパイル使用メモリ 261,040 KB
実行使用メモリ 23,152 KB
最終ジャッジ日時 2024-07-16 01:39:06
合計ジャッジ時間 6,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 72 ms
15,104 KB
testcase_05 AC 88 ms
12,020 KB
testcase_06 AC 54 ms
8,692 KB
testcase_07 AC 44 ms
8,192 KB
testcase_08 AC 71 ms
12,032 KB
testcase_09 AC 56 ms
8,064 KB
testcase_10 AC 42 ms
7,808 KB
testcase_11 AC 157 ms
19,136 KB
testcase_12 AC 89 ms
12,936 KB
testcase_13 AC 134 ms
16,136 KB
testcase_14 AC 19 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 82 ms
10,248 KB
testcase_19 AC 53 ms
8,024 KB
testcase_20 AC 121 ms
14,248 KB
testcase_21 AC 178 ms
19,284 KB
testcase_22 AC 73 ms
10,240 KB
testcase_23 AC 111 ms
13,588 KB
testcase_24 AC 111 ms
13,480 KB
testcase_25 AC 36 ms
8,536 KB
testcase_26 AC 152 ms
23,152 KB
testcase_27 AC 74 ms
15,928 KB
testcase_28 AC 8 ms
7,040 KB
testcase_29 AC 12 ms
7,936 KB
testcase_30 AC 37 ms
12,136 KB
testcase_31 AC 68 ms
9,608 KB
testcase_32 AC 112 ms
18,584 KB
testcase_33 AC 157 ms
17,156 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 55 ms
8,448 KB
testcase_37 AC 57 ms
9,728 KB
testcase_38 AC 96 ms
14,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 998244353;
// constexpr int MOD = 1000000007;
constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1};
constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U>
inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U>
inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

template <typename CostType>
struct Edge {
  CostType cost;
  int src, dst;

  explicit Edge(const int src, const int dst, const CostType cost = 0)
      : cost(cost), src(src), dst(dst) {}

  auto operator<=>(const Edge& x) const = default;
};

int main() {
  int n, m, l, s, e; cin >> n >> m >> l >> s >> e;
  vector<vector<Edge<int>>> graph(n);
  while (m--) {
    int a, b, t; cin >> a >> b >> t; --a; --b;
    graph[a].emplace_back(a, b, t);
    graph[b].emplace_back(b, a, t);
  }
  vector<int> has_wc(n, false);
  while (l--) {
    int t; cin >> t; --t;
    has_wc[t] = true;
  }
  vector<ll> dist(n * 2, LINF);
  dist[0] = 0;
  priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<pair<ll, int>>> que;
  que.emplace(dist[0], 0);
  while (!que.empty()) {
    const auto [d, i] = que.top(); que.pop();
    if (d > dist[i]) continue;
    if (i < n && has_wc[i] && dist[i] <= s + e - 1 && chmin(dist[i + n], max(dist[i], ll{s}) + 1)) {
      que.emplace(dist[i + n], i + n);
    }
    for (const Edge<int>& edge : graph[i % n]) {
      const int dst = edge.dst + (i < n ? 0 : n);
      if (chmin(dist[dst], dist[i] + edge.cost)) que.emplace(dist[dst], dst);
    }
  }
  cout << (dist.back() == LINF ? -1 : dist.back()) << '\n';
  return 0;
}
0