結果
問題 | No.848 なかよし旅行 |
ユーザー | jell |
提出日時 | 2019-07-06 11:53:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,308 bytes |
コンパイル時間 | 2,093 ms |
コンパイル使用メモリ | 185,832 KB |
実行使用メモリ | 6,996 KB |
最終ジャッジ日時 | 2024-10-06 23:49:01 |
合計ジャッジ時間 | 3,754 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 89 ms
6,996 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 | 3 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 17 ms
5,248 KB |
testcase_12 | AC | 21 ms
5,248 KB |
testcase_13 | AC | 28 ms
5,248 KB |
testcase_14 | AC | 11 ms
5,248 KB |
testcase_15 | AC | 26 ms
5,248 KB |
testcase_16 | AC | 42 ms
5,760 KB |
testcase_17 | AC | 30 ms
5,248 KB |
testcase_18 | AC | 17 ms
5,248 KB |
testcase_19 | AC | 15 ms
5,248 KB |
testcase_20 | WA | - |
testcase_21 | AC | 34 ms
5,376 KB |
testcase_22 | AC | 34 ms
5,248 KB |
testcase_23 | AC | 8 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 44 ms
5,852 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 3 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; using i64=int_fast64_t; using pii=pair<int,int>; template <class T> constexpr T inf=numeric_limits<T>::max() / (T)2; template <class T> using minheap=priority_queue<T,vector<T>,greater<T>>; #define fir first #define sec second #define mkp make_pair #define mkt make_tuple #define emb emplace_back #define emp emplace #define all(v) begin(v),end(v) void ios_untie() { ios::sync_with_stdio(false); cin.tie(nullptr); } void file_setup() { if(!freopen("stderr.txt","wt",stderr)) { std::cerr << "Failed to open the stderr file\n"; freopen("CON","wt",stderr); } if(!freopen("stdout.txt","wt",stdout)) { std::cerr << "Failed to open the stdout file\n"; freopen("CON","wt",stdout); } if(!freopen("stdin.txt","rt",stdin)) { std::cerr << "Failed to open the stdin file.\n"; freopen("CON","rt",stdin); } } i64 binry(i64 ok, i64 ng, const function<bool(i64)> &f) { while(abs(ok-ng)>1) { i64 mid=(ok+ng)/2; (f(mid) ? ok : ng) = mid; } return ok; } int n,P,Q,T; vector<pii> g[2010]; i64 dist[3][2010]; void solve() { size_t indx=0; for(int s:{0,P,Q}) { auto dis=dist[indx]; fill(dis,dis+n,inf<i64>); minheap<pii> que; que.emplace(dis[s]=0,s); while(!que.empty()) { i64 d; int v; tie(d,v)=que.top(); que.pop(); if(d!=dis[v]) continue; for(auto &e:g[v]) { if(d+e.sec<dis[e.fir]) { que.emplace(dis[e.fir]=d+e.sec,e.fir); } } } indx++; } i64 ans=-1; for(int i=0; i<n; ++i) { for(int j=0; j<=i; ++j) { i64 solo=max(dist[1][i]+dist[1][j],dist[2][i]+dist[2][j]); i64 tt=dist[0][i]+dist[0][j]+solo; if(tt<=T) { ans=max(ans,T-solo); } } } if(dist[0][P]+dist[0][Q]+dist[1][Q]<=T) ans=T; cout<<ans<<endl; } signed main() { ios_untie(); #ifdef LOCAL file_setup(); #endif int m; cin>>n>>m>>P>>Q>>T; P--,Q--; while(m--) { int u,v,c; cin>>u>>v>>c; u--,v--; g[u].emplace_back(v,c); g[v].emplace_back(u,c); } solve(); }