結果
問題 | No.848 なかよし旅行 |
ユーザー | chocorusk |
提出日時 | 2019-01-25 19:37:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,220 bytes |
コンパイル時間 | 829 ms |
コンパイル使用メモリ | 98,452 KB |
実行使用メモリ | 47,944 KB |
最終ジャッジ日時 | 2024-10-06 20:43:28 |
合計ジャッジ時間 | 7,743 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
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 <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> using namespace std; typedef long long int ll; typedef pair<ll, int> P; const ll INF=1e16; int n, m, p, q; int main() { ll t; cin>>n>>m>>p>>q>>t; p--; q--; ll d[2001][2001]; for(int i=0; i<n; i++){ for(int j=0; j<n; j++){ if(i==j) d[i][j]=0; else d[i][j]=INF; } } for(int i=0; i<m; i++){ int a, b; ll c; cin>>a>>b>>c; a--; b--; d[a][b]=d[b][a]=c; } for(int k=0; k<n; k++){ for(int i=0; i<n; i++){ for(int j=i+1; j<n; j++){ if(d[i][k]+d[k][j]<d[i][j]){ d[i][j]=d[j][i]=d[i][k]+d[k][j]; } } } } if(t<max(2*d[0][p], 2*d[0][q])){ cout<<-1<<endl; return 0; }else if(t>=d[0][p]+d[p][q]+d[0][q]){ cout<<t<<endl; return 0; } ll ans=0; for(int i=0; i<n; i++){ for(int j=0; j<n; j++){ ll dm=max(d[p][i]+d[p][j], d[q][i]+d[q][j]); if(dm+d[0][i]+d[0][j]>t) continue; ans=max(ans, t-dm); } } cout<<ans<<endl; return 0; }