結果
問題 | No.848 なかよし旅行 |
ユーザー | koyopro |
提出日時 | 2020-03-30 00:35:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,078 bytes |
コンパイル時間 | 1,811 ms |
コンパイル使用メモリ | 168,040 KB |
実行使用メモリ | 24,360 KB |
最終ジャッジ日時 | 2024-06-10 19:40:17 |
合計ジャッジ時間 | 4,058 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 94 ms
24,360 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 26 ms
10,240 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,376 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define int long long #define FOR(i, a, b) for(int i=(a);i<(b);i++) #define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--) #define REP(i, n) for(int i=0; i<(n); i++) #define RREP(i, n) for(int i=(n-1); i>=0; i--) #define REP1(i, n) for(int i=1; i<=(n); i++) #define RREP1(i, n) for(int i=(n); i>=1; i--) #define ALL(a) (a).begin(),(a).end() #define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end()); #define CONTAIN(a, b) find(ALL(a), (b)) != (a).end() #define out(...) printf(__VA_ARGS__) int dxy[] = {0, 1, 0, -1, 0}; void solve(); signed main() { #if DEBUG std::ifstream in("input.txt"); std::cin.rdbuf(in.rdbuf()); #endif cin.tie(0); ios::sync_with_stdio(false); solve(); return 0; } /*================================*/ #if DEBUG #define SIZE 5 #else #define SIZE 2222 #endif int N,M,P,Q,T; typedef pair<int, int> Edge; typedef pair<int, int> I; vector< vector<Edge> > E; int DP[3][SIZE]; void dijkstra(int a, int s) { auto dp = DP[a]; REP(i,SIZE) dp[i]=LONG_LONG_MAX; priority_queue<I, vector<I>, greater<I>> que; dp[s]=0; que.push(*new I(0,s)); while(que.size()) { I i = que.top(); que.pop(); if (i.first > dp[i.second]) continue; for (auto e:E[i.second]) { int c = i.first + e.second; if (dp[e.first] > c) { dp[e.first] = c; que.push(*new I(c, e.first)); } } } } void solve() { cin>>N>>M>>P>>Q>>T; P--, Q--; int a,b,c; E.resize(N); REP(i,M) { cin>>a>>b>>c; a--,b--; E[a].push_back(*new Edge(b,c)); E[b].push_back(*new Edge(a,c)); } dijkstra(0, 0); dijkstra(1, P); dijkstra(2, Q); if ((DP[0][P] + DP[1][Q] + DP[2][0]) <= T) { cout << T << endl; return; } int ans = -1; REP(i,N) { int d = max(DP[2][i], DP[1][i]) * 2; int t = 2*DP[0][i] + d; if (t > T) continue; ans = max(ans, T-d); } cout << ans << endl; }