結果
問題 | No.848 なかよし旅行 |
ユーザー | face4 |
提出日時 | 2019-07-06 20:46:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 797 ms / 2,000 ms |
コード長 | 1,969 bytes |
コンパイル時間 | 922 ms |
コンパイル使用メモリ | 83,124 KB |
実行使用メモリ | 7,496 KB |
最終ジャッジ日時 | 2024-11-08 00:57:56 |
合計ジャッジ時間 | 4,507 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 797 ms
7,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
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 | 2 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 33 ms
5,248 KB |
testcase_12 | AC | 44 ms
5,248 KB |
testcase_13 | AC | 60 ms
5,248 KB |
testcase_14 | AC | 18 ms
5,248 KB |
testcase_15 | AC | 56 ms
5,248 KB |
testcase_16 | AC | 99 ms
5,888 KB |
testcase_17 | AC | 69 ms
5,504 KB |
testcase_18 | AC | 33 ms
5,248 KB |
testcase_19 | AC | 29 ms
5,248 KB |
testcase_20 | AC | 5 ms
5,248 KB |
testcase_21 | AC | 84 ms
5,632 KB |
testcase_22 | AC | 92 ms
5,504 KB |
testcase_23 | AC | 21 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 107 ms
6,016 KB |
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<iostream> #include<vector> #include<queue> using namespace std; typedef long long ll; // (N+M)log(N) + N^2 ? int main(){ int n, m, p, q, t; cin >> n >> m >> p >> q >> t; p--, q--; vector<pair<int,int>> v[n]; while(m-- > 0){ int a, b, c; cin >> a >> b >> c; a--, b--; v[a].push_back({b, c}); v[b].push_back({a, c}); } const ll INF = 1ll<<60; vector<ll> O(n, INF), P(n, INF), Q(n, INF); O[0] = P[p] = Q[q] = 0; priority_queue<pair<ll,int>> pq; pq.push({-0, 0}); while(!pq.empty()){ auto x = pq.top(); pq.pop(); for(auto next : v[x.second]){ ll nc = -x.first + next.second; if(nc < O[next.first]){ O[next.first] = nc; pq.push({-nc, next.first}); } } } pq.push({-0, p}); while(!pq.empty()){ auto x = pq.top(); pq.pop(); for(auto next : v[x.second]){ ll nc = -x.first + next.second; if(nc < P[next.first]){ P[next.first] = nc; pq.push({-nc, next.first}); } } } pq.push({-0, q}); while(!pq.empty()){ auto x = pq.top(); pq.pop(); for(auto next : v[x.second]){ ll nc = -x.first + next.second; if(nc < Q[next.first]){ Q[next.first] = nc; pq.push({-nc, next.first}); } } } if(2*O[p] > t || 2*O[q] > t){ cout << -1 << endl; return 0; } ll ans = 0; if(O[p] + O[q] + P[q] <= t){ ans = t; } for(int i = 0; i < n; i++){ // where the two separates for(int j = 0; j < n; j++){ // where the two meets ll tmp = O[i] + max(P[i] + P[j], Q[i] + Q[j]) + O[j]; if(tmp <= t){ ans = max(ans, t-tmp + O[i] + O[j]); } } } cout << ans << endl; return 0; }