結果

問題 No.2805 Go to School
ユーザー 黒狗さん。黒狗さん。
提出日時 2024-07-03 20:37:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 2,197 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 180,412 KB
実行使用メモリ 22,332 KB
最終ジャッジ日時 2024-07-16 01:35:55
合計ジャッジ時間 8,204 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 165 ms
16,640 KB
testcase_05 AC 207 ms
14,156 KB
testcase_06 AC 103 ms
9,260 KB
testcase_07 AC 105 ms
9,244 KB
testcase_08 AC 186 ms
14,516 KB
testcase_09 AC 106 ms
9,420 KB
testcase_10 AC 111 ms
8,928 KB
testcase_11 AC 354 ms
21,360 KB
testcase_12 AC 203 ms
14,608 KB
testcase_13 AC 311 ms
18,480 KB
testcase_14 AC 42 ms
6,272 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 152 ms
11,464 KB
testcase_19 AC 98 ms
8,900 KB
testcase_20 AC 241 ms
15,780 KB
testcase_21 AC 311 ms
20,148 KB
testcase_22 AC 135 ms
11,076 KB
testcase_23 AC 219 ms
14,608 KB
testcase_24 AC 221 ms
14,336 KB
testcase_25 AC 60 ms
8,684 KB
testcase_26 AC 231 ms
22,332 KB
testcase_27 AC 155 ms
15,036 KB
testcase_28 AC 11 ms
6,144 KB
testcase_29 AC 23 ms
6,940 KB
testcase_30 AC 83 ms
11,136 KB
testcase_31 AC 109 ms
10,240 KB
testcase_32 AC 219 ms
18,984 KB
testcase_33 AC 256 ms
18,612 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 99 ms
9,028 KB
testcase_37 AC 110 ms
10,112 KB
testcase_38 AC 205 ms
15,360 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;
    }
    //学校からダイクストラ
    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