結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 117 ms
9,024 KB
testcase_10 AC 371 ms
21,352 KB
testcase_11 AC 223 ms
14,628 KB
testcase_12 AC 324 ms
18,476 KB
testcase_13 AC 46 ms
6,144 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 155 ms
11,468 KB
testcase_18 AC 99 ms
9,024 KB
testcase_19 AC 246 ms
15,784 KB
testcase_20 AC 316 ms
20,144 KB
testcase_21 AC 133 ms
10,952 KB
testcase_22 AC 223 ms
14,736 KB
testcase_23 AC 221 ms
14,552 KB
testcase_24 AC 64 ms
8,808 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 234 ms
18,856 KB
testcase_32 AC 272 ms
18,616 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 107 ms
9,152 KB
testcase_36 AC 109 ms
10,240 KB
testcase_37 AC 227 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);
    //そもそもお腹が痛くなる前に学校につけるかどうか、もしくは家から学校につけるかどうか
    if (dis1[N-1] < S or dis1[N-1] == LLONG_MAX/16) {
        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