結果

問題 No.848 なかよし旅行
ユーザー yuji9511yuji9511
提出日時 2019-07-05 23:10:57
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,873 bytes
コンパイル時間 1,500 ms
コンパイル使用メモリ 167,828 KB
実行使用メモリ 11,464 KB
最終ジャッジ日時 2024-04-16 08:03:51
合計ジャッジ時間 4,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> lpair;
const ll MOD = 1e9 + 7;
const ll INF = 1e18;
#define rep(i,m,n) for(ll i = (m); i < (n); i++)
#define rrep(i,m,n) for(ll i = (m); i >= (n); i--)
#define print(x) cout << (x) << endl;
#define print2(x,y) cout << (x) << " " << (y) << endl;
#define printa(x,n) for(ll i = 0; i < n; i++){ cout << (x[i]) << " ";} cout<<endl;
ll a[100010], b[100010], c[100010];
vector<lpair> tree[2010];
int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll N,M,P,Q,T;
    cin >> N >> M >> P >> Q >> T;
    P--; Q--;
    rep(i,0,M){
        cin >> a[i] >> b[i] >> c[i];
        a[i]--; b[i]--;
        tree[a[i]].push_back(make_pair(b[i], c[i]));
        tree[b[i]].push_back(make_pair(a[i], c[i]));
    }
    priority_queue<lpair, vector<lpair> ,greater<lpair> > pq;
    ll dist[2010] = {};
    rep(i,1,N) dist[i] = INF;
    rep(i,0,N) pq.push(make_pair(dist[i], i));
    while(!pq.empty()){
        lpair l1 = pq.top();
        pq.pop();
        for(auto &e: tree[l1.second]){
            if(dist[e.first] > dist[l1.second] + e.second){
                dist[e.first] = dist[l1.second] + e.second;
                pq.push(make_pair(dist[e.first], e.first));
            }
        }
    }

    ll distP[2010] = {};
    rep(i,0,N) distP[i] = INF;
    distP[P] = 0;
    rep(i,0,N) pq.push(make_pair(dist[i], i));
    while(!pq.empty()){
        lpair l1 = pq.top();
        pq.pop();
        for(auto &e: tree[l1.second]){
            if(distP[e.first] > distP[l1.second] + e.second){
                distP[e.first] = distP[l1.second] + e.second;
                pq.push(make_pair(distP[e.first], e.first));
            }
        }
    }

    ll distQ[2010] = {};
    rep(i,0,N) distQ[i] = INF;
    distQ[Q] = 0;
    rep(i,0,N) pq.push(make_pair(dist[i], i));
    while(!pq.empty()){
        lpair l1 = pq.top();
        pq.pop();
        for(auto &e: tree[l1.second]){
            if(distQ[e.first] > distQ[l1.second] + e.second){
                distQ[e.first] = distQ[l1.second] + e.second;
                pq.push(make_pair(distQ[e.first], e.first));
            }
        }
    }
    ll ans = -INF;
    ll dd = min(dist[P] + distP[Q] + distQ[0], dist[Q] + distQ[P] + distP[0]);
    if(dd <= T){
        print(T);
        return 0;
    }
    ll d2 = max(dist[P], dist[Q]);
    if(d2 > T){
        print(-1);
        return 0;
    }
    // ll ans = -INF;
    // rep(i,0,N){
    //     ll tt = T - max(distP[i]*2, distQ[i]*2);
    //     if(tt > 0 && max(distP[i]*2, distQ[i]*2) + dist[i]*2 <= T){
    //         ans = max(ans, tt);
    //     }
    // }
    // ll dd = min(dist[P] + distP[Q] + distQ[0], dist[Q] + distQ[P] + distP[0]);
    // if(dd <= T){
    //     ans = T;
    // }
    // if(ans == -INF){
    //     print(-1);
    // }else{
    //     print(ans);
    // }
    
}
0