結果
問題 | No.848 なかよし旅行 |
ユーザー | sinsincoscos |
提出日時 | 2019-07-05 22:29:13 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,255 bytes |
コンパイル時間 | 764 ms |
コンパイル使用メモリ | 126,720 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-05-07 19:12:27 |
合計ジャッジ時間 | 9,635 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <queue> #include <stdio.h> using namespace std; typedef long long ll; typedef pair<ll,ll> Pa; struct edge{ ll to,dist; }; ll N,M,P,Q,T; ll inf = 1e18; vector<vector<edge>> v(2010); void Dijkstra(int s,vector<ll>& dp){ priority_queue<Pa> Q; dp[s] = 0; Q.push({0,s}); while(!Q.empty()){ Pa p = Q.top(); Q.pop(); if(dp[p.second]<p.first) continue; for(auto x:v[p.second]){ if(dp[x.to]>p.first+x.dist){ dp[x.to] = p.first+x.dist; Q.push({dp[x.to],x.to}); } } } } int main(){ cin >> N >> M >> P >> Q >> T; ll a,b,c; for(int i=0;i<M;i++){ scanf("%lld%lld%lld",&a,&b,&c); v[a].push_back({b,c}); v[b].push_back({a,c}); } vector<ll> dp1(N+1,inf),dp2(N+1,inf),dp3(N+1,inf); Dijkstra(1,dp1); Dijkstra(P,dp2); Dijkstra(Q,dp3); ll ans = -1; for(int i=1;i<N;i++) for(int j=i+1;j<=N;j++){ ll t = dp1[i]+dp1[j]+max(dp2[i]+dp2[j],dp3[i]+dp3[j]); if(t<=T) ans = max(ans,T-max(dp2[i]+dp2[j],dp3[i]+dp3[j])); } if(2*(min(dp1[P],dp1[Q])+dp2[Q])<=T) ans = T; if(dp1[P]+dp1[Q]+dp2[Q]<=T) ans = T; cout << ans << endl; }