結果

問題 No.2805 Go to School
ユーザー Yudai0606NazoYudai0606Nazo
提出日時 2024-07-14 21:11:40
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 2,036 bytes
コンパイル時間 7,797 ms
コンパイル使用メモリ 336,484 KB
実行使用メモリ 18,144 KB
最終ジャッジ日時 2024-07-16 01:43:09
合計ジャッジ時間 14,088 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,376 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 180 ms
12,800 KB
testcase_05 AC 213 ms
9,344 KB
testcase_06 AC 124 ms
6,944 KB
testcase_07 AC 107 ms
6,784 KB
testcase_08 AC 201 ms
9,264 KB
testcase_09 AC 115 ms
6,912 KB
testcase_10 AC 114 ms
6,456 KB
testcase_11 AC 300 ms
16,900 KB
testcase_12 AC 182 ms
11,068 KB
testcase_13 AC 256 ms
13,680 KB
testcase_14 AC 41 ms
5,760 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 145 ms
8,168 KB
testcase_19 AC 94 ms
7,260 KB
testcase_20 AC 229 ms
10,732 KB
testcase_21 AC 291 ms
17,244 KB
testcase_22 AC 133 ms
9,344 KB
testcase_23 AC 200 ms
10,728 KB
testcase_24 AC 194 ms
10,492 KB
testcase_25 AC 59 ms
7,516 KB
testcase_26 AC 225 ms
18,144 KB
testcase_27 AC 164 ms
15,312 KB
testcase_28 AC 12 ms
6,912 KB
testcase_29 AC 22 ms
7,564 KB
testcase_30 AC 88 ms
11,776 KB
testcase_31 AC 128 ms
8,652 KB
testcase_32 AC 221 ms
13,544 KB
testcase_33 AC 249 ms
15,064 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 102 ms
7,808 KB
testcase_37 AC 109 ms
9,216 KB
testcase_38 AC 186 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <cassert>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;
//using mint = modint1000000007;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define repu(i, s, t) for (int i = (int)(s); i < (int)(t); i++)
#define repd(i, s, t) for (int i = (int)(s)-1; i >= (int)(t); i--)
#define all(v) v.begin(), v.end()
template<typename T> bool chmax(T &a, const T b) { if(a >= b) return false; a = b; return true; }
template<typename T> bool chmin(T &a, const T b) { if(a <= b) return false; a = b; return true; }
template<typename T> istream& operator>>(istream &in, vector<T> &a) { for(T &x: a) in >> x; return in; }
template<typename T> ostream& operator<<(ostream &out, const vector<T> &a) { for(const T &x: a) out << x << ' '; return out; }
const int di[] = {1, 0, -1, 0, 1, 1, -1, -1, 0};
const int dj[] = {0, 1, 0, -1, -1, 1, 1, -1, 0};


int main() {
    int n, m, l, s, e;
    cin >> n >> m >> l >> s >> e;
    vector<vector<pair<int, int>>> g(n);
    rep(i, m) {
        int a, b, t;
        cin >> a >> b >> t;
        a--, b--;
        g[a].emplace_back(b, t);
        g[b].emplace_back(a, t);
    }
    vector<int> ts(l);
    cin >> ts;
    rep(i, l) ts[i]--;

    using P = pair<ll, int>;
    priority_queue<P, vector<P>, greater<P>> pq;
    auto dij = [&](vector<ll> &dist) {
        while(!pq.empty()) {
            auto [d, pos] = pq.top(); pq.pop();
            if(dist[pos] < d) continue;
            for(auto[to, c]: g[pos]) {
                if(chmin(dist[to], dist[pos] + c)) {
                    pq.emplace(dist[to], to);
                }
            }
        }
    };

    const ll INF = 1e18;
    vector<ll> d1(n, INF);
    d1[0] = 0;
    pq.emplace(0, 0);
    dij(d1);

    vector<ll> d2(n, INF);
    for(int x: ts) {
        if(d1[x] >= s+e) continue;
        d2[x] = max(ll(s), d1[x]) + 1;
        pq.emplace(d2[x], x);
    }
    dij(d2);
    cout << (d2[n-1] < INF ? d2[n-1] : -1) << endl;
    return 0;
}
0