結果

問題 No.2805 Go to School
ユーザー 黒狗さん。黒狗さん。
提出日時 2024-06-18 22:09:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,356 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 179,476 KB
実行使用メモリ 21,224 KB
最終ジャッジ日時 2024-07-04 21:13:15
合計ジャッジ時間 7,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 117 ms
9,056 KB
testcase_10 AC 361 ms
21,224 KB
testcase_11 AC 213 ms
14,632 KB
testcase_12 AC 311 ms
18,480 KB
testcase_13 AC 40 ms
6,144 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 153 ms
11,468 KB
testcase_18 AC 95 ms
8,892 KB
testcase_19 AC 232 ms
15,780 KB
testcase_20 AC 300 ms
20,276 KB
testcase_21 AC 131 ms
11,080 KB
testcase_22 AC 209 ms
14,612 KB
testcase_23 AC 211 ms
14,680 KB
testcase_24 AC 59 ms
8,812 KB
testcase_25 WA -
testcase_26 AC 146 ms
14,976 KB
testcase_27 AC 12 ms
6,144 KB
testcase_28 AC 23 ms
7,168 KB
testcase_29 AC 81 ms
11,392 KB
testcase_30 AC 110 ms
10,240 KB
testcase_31 AC 219 ms
18,980 KB
testcase_32 AC 259 ms
18,740 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 108 ms
9,160 KB
testcase_36 AC 111 ms
10,112 KB
testcase_37 AC 212 ms
15,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
struct Edge {
    long long to;
    long long cost;
};
vector<long long> dijkstra(const vector<vector<Edge>> &G, int s) {
    int N = G.size();
    vector<long long> dis(N, LLONG_MAX/16);
    priority_queue<pair<long long, int>, vector<pair<long long, int>>, greater<pair<long long, int>>> pq;
    dis[s] = 0;
    pq.emplace(dis[s], s);
    while (!pq.empty()) {
        pair<long long, int> p = pq.top();
        pq.pop();
        int v = p.second;
        if (dis[v] < p.first) {
            continue;
        }
        for (auto &e : G[v]) {
            if (dis[e.to] > dis[v] + e.cost) {
                dis[e.to] = dis[v] + e.cost;
                pq.emplace(dis[e.to], e.to);
            }
        }
    }
    return dis;
}
int main() {
    ll N,M,L,S,E;
    cin >> N >> M >> L >> S >> E;
    vector<vector<Edge>> G(N);
    for (int i = 0; i < M; i++) {
        ll a,b,c;
        cin >> a >> b >> c;
        a--;b--;
        G[a].push_back({b,c});
        G[b].push_back({a,c});
    }
    vector<ll> T(L);
    for (int i = 0; i < L; i++) {
        cin >> T[i];
        T[i]--;
    }
    //家からダイクストラ
    vector<ll> dis1 = dijkstra(G, 0);
    //学校につけないなら-1
    if (dis1[N-1] == LLONG_MAX/16) {
        cout << -1 << endl;
        return 0;
    }
    //そもそもお腹が痛くなる前に学校につけるかどうか
    if (dis1[N-1] < S) {
        cout << dis1[N-1]<< endl;
        return 0;
    }
    //学校からダイクストラ
    vector<ll> dis2 = dijkstra(G, N-1);
    //それぞれのトイレについて間に合うかどうかを調べる
    ll ans = LLONG_MAX;
    for (int i = 0; i < L; i++) {
        ll t = T[i];
        ll time = dis1[t];
        //そもそもトイレの時間に間に合うかどうか
        if (time < S) {
            //トイレまで待つ+滞在期間
            time = S+1;
        }else if(S<=time and time < S+E) {
            //ちょうどお腹が痛いから滞在する
            time += 1;
        }else {
            //間に合わない...
            continue;
        }
        //トイレto学校
        time += dis2[t];
        ans = min(ans, time);
    }
    //answer
    if (ans == LLONG_MAX) {
        cout << -1 << endl;
    }else {
        cout << ans << endl;
    }
}
0