結果
問題 | No.848 なかよし旅行 |
ユーザー | noisy_noimin |
提出日時 | 2019-07-05 22:44:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,176 bytes |
コンパイル時間 | 874 ms |
コンパイル使用メモリ | 103,372 KB |
実行使用メモリ | 13,188 KB |
最終ジャッジ日時 | 2024-10-06 22:41:04 |
合計ジャッジ時間 | 2,814 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
13,188 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 51 ms
6,624 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 4 ms
5,248 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
ソースコード
#include <cstdio> #include <cstdlib> #include <cmath> #include <climits> #include <cassert> #include <cstdint> #include <iostream> #include <iomanip> #include <string> #include <stack> #include <queue> #include <vector> #include <map> #include <set> #include <algorithm> #include <numeric> #include <bitset> using namespace std; using ll = long long; using Pll = pair<ll, ll>; using Pii = pair<int, int>; constexpr int MAX_N = 2000; vector< vector<Pll> > edges(MAX_N); class Dijkstra { public: ll d[MAX_N]; priority_queue< Pll, vector<Pll>, greater<Pll> > que; ll start = -1; Dijkstra(ll start): start(start) { fill(d, d+MAX_N, 1LL<<30); d[start] = 0; que.push(Pll(0, start)); while(!que.empty()){ Pll v = que.top(); que.pop(); if(d[v.second] < v.first) continue; for(Pll e: edges[v.second]){ if(d[e.first] > d[v.second] + e.second){ d[e.first] = d[v.second] + e.second; que.push(Pll(d[e.first], e.first)); } } } } ll get(ll x) { return d[x]; } }; int main() { int n,m,p,q; ll t; cin >> n >> m >> p >> q >> t; --p; --q; int a,b; ll c; for(int i=0;i<m;++i){ cin >> a >> b >> c; --a; --b; edges[a].emplace_back(b, c); edges[b].emplace_back(a, c); } Dijkstra d_0 = Dijkstra(0), d_p = Dijkstra(p), d_q = Dijkstra(q); assert(d_0.get(p) == d_p.get(0)); assert(d_p.get(q) == d_q.get(p)); assert(d_q.get(0) == d_0.get(q)); ll ans = -1LL; if(d_0.get(p) + d_p.get(q) + d_q.get(0) <= t) { ans = t; } else { for(int r=0;r<n;++r) { ll tt = 2LL * (d_0.get(r) + max(d_p.get(r), d_q.get(r))); if(tt <= t) { ans = max(t-2LL*max(d_p.get(r), d_q.get(r)), ans); } tt = d_0.get(r) + max(d_p.get(r)+d_p.get(0), d_q.get(r)+d_q.get(0)); if(tt <= t) { ans = max(t - max(d_p.get(r)+d_p.get(0), d_q.get(r)+d_q.get(0)), ans); } } } cout << ans << endl; }