結果
問題 | No.848 なかよし旅行 |
ユーザー | sinsincoscos |
提出日時 | 2019-07-05 22:29:13 |
言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,255 bytes |
コンパイル時間 | 3,795 ms |
コンパイル使用メモリ | 126,336 KB |
実行使用メモリ | 13,056 KB |
最終ジャッジ日時 | 2024-11-30 14:15:02 |
合計ジャッジ時間 | 20,736 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | AC | 2 ms
13,056 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 6 ms
5,248 KB |
testcase_09 | AC | 9 ms
5,248 KB |
testcase_10 | AC | 7 ms
5,248 KB |
testcase_11 | AC | 455 ms
5,248 KB |
testcase_12 | AC | 634 ms
5,632 KB |
testcase_13 | WA | - |
testcase_14 | AC | 350 ms
5,248 KB |
testcase_15 | AC | 718 ms
6,528 KB |
testcase_16 | AC | 1,413 ms
7,936 KB |
testcase_17 | AC | 748 ms
7,168 KB |
testcase_18 | AC | 408 ms
5,248 KB |
testcase_19 | AC | 402 ms
5,248 KB |
testcase_20 | AC | 60 ms
5,248 KB |
testcase_21 | AC | 850 ms
7,296 KB |
testcase_22 | AC | 176 ms
7,296 KB |
testcase_23 | AC | 6 ms
5,248 KB |
testcase_24 | WA | - |
testcase_25 | TLE | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 1 ms
5,248 KB |
testcase_29 | WA | - |
ソースコード
#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; }