結果
問題 | No.848 なかよし旅行 |
ユーザー | satashun |
提出日時 | 2019-07-05 22:11:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,753 bytes |
コンパイル時間 | 1,682 ms |
コンパイル使用メモリ | 177,052 KB |
実行使用メモリ | 53,772 KB |
最終ジャッジ日時 | 2024-10-06 21:58:46 |
合計ジャッジ時間 | 8,108 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 <bits/stdc++.h> using namespace std; typedef pair<int, int> pii; typedef long long ll; typedef vector<int> vi; #define pb push_back #define eb emplace_back #define mp make_pair #define fi first #define se second #define rep(i,n) rep2(i,0,n) #define rep2(i,m,n) for(int i=m;i<(n);i++) #define ALL(c) (c).begin(),(c).end() #define dump(x) cout << #x << " = " << (x) << endl constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n-1); } template<class T, class U> ostream& operator<<(ostream& os, const pair<T, U>& p) { os<<"("<<p.first<<","<<p.second<<")"; return os; } template<class T> ostream& operator<<(ostream& os, const vector<T>& v) { os<<"{"; rep(i, v.size()) { if (i) os<<","; os<<v[i]; } os<<"}"; return os; } const int maxn = 2010; const ll INF = 1e18; vector<pii> g[maxn]; ll d[maxn][maxn]; int main() { int N, M, P, Q, T; cin >> N >> M >> P >> Q >> T; --P; --Q; rep(i, M) { int a, b, c; cin >> a >> b >> c; --a; --b; g[a].eb(b, c); g[b].eb(a, c); } rep(i, N) { rep(j, N) d[i][j] = INF; d[i][i] = 0; } rep(i, N) { using Data = pair<ll, int>; priority_queue<Data, vector<Data>, greater<Data>> que; que.push(mp(0ll, i)); while (!que.empty()) { auto t = que.top(); que.pop(); int v = t.se; if (t.fi > d[i][v]) continue; for (pii e : g[v]) { if (d[i][e.fi] > d[i][v] + e.se) { d[i][e.fi] = d[i][v] + e.se; que.push(mp(d[i][e.fi], e.fi)); } } } } int ans = -1; if (d[0][P] + d[P][Q] + d[Q][0] <= T) ans = T; rep(i, N) { rep(j, N) { ll t = d[0][i] + d[j][0] + max(d[i][P] + d[P][j], d[i][Q] + d[Q][j]); if (t <= T) { ans = max<int>(ans, T - max(d[i][P] + d[P][j], d[i][Q] + d[Q][j])); } } } cout << ans << endl; return 0; }