結果

問題 No.848 なかよし旅行
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-06-14 19:43:34
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,922 bytes
コンパイル時間 1,543 ms
コンパイル使用メモリ 173,928 KB
実行使用メモリ 18,200 KB
最終ジャッジ日時 2024-06-27 19:49:16
合計ジャッジ時間 4,654 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
18,200 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 68 ms
12,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 5 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 2 ms
5,376 KB
testcase_25 WA -
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.06.14 19:43:30
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;




template<typename T>
struct Dijkstra {
private:
    int V;
    struct edge { int to; T cost; };
    vector<vector<edge>> G;
public:
    const T inf = numeric_limits<T>::max();
    
    
    vector<T> d; 
    Dijkstra(int V) : V(V) {
        G.resize(V);
    }
    
    
    void add_edge(int from, int to, T weight, bool directed = false) {
        G[from].push_back({to,weight});
        if (!directed) G[to].push_back({from,weight});
    }
    void build(int s) {
        d.assign(V, inf); 
        typedef tuple<T, int> P; 
        priority_queue<P, vector<P>, greater<P>> pq;
        d[s] = 0; 
        pq.push(P(d[s], s)); 
        while (!pq.empty()) {
            P p = pq.top(); pq.pop();
            int v = get<1>(p);
            
            if (d[v] < get<0>(p)) continue; 
            for (const edge &e : G[v])
            {
                
                if (d[e.to] > d[v] + e.cost) {
                    d[e.to] = d[v] + e.cost;
                    pq.push(P(d[e.to], e.to));
                }
            }
        }
    }
};
int main() {
    int n,m,p,q,t;cin >> n >> m >> p >> q >> t;
    p--;q--;
    Dijkstra<ll> g1(n),gp(n),gq(n);
    for (int i = 0; i < m; i++) {
        int u,v,c;cin >> u >> v >> c;
        u--;v--;
        g1.add_edge(u,v,c);
        gp.add_edge(u,v,c);
        gq.add_edge(u,v,c);
    }
    g1.build(0);
    gp.build(p);
    gq.build(q);
    if (g1.d[p] + gp.d[q] + gq.d[0] <= t) {
        cout << t << endl;
        return 0;
    }
    ll ans = -1;
    for (int i = 0; i < n; i++) {
        ll t1 = g1.d[i];
        ll tp = gp.d[i];
        ll tq = gq.d[i];
        ll aaa = max(tp,tq);
        if (2 * t1 + 2 * aaa > t) continue;
        ans = max(ans,t - 2 * aaa);
    }
    cout << ans << endl;
    return 0;
}
0