結果

問題 No.848 なかよし旅行
ユーザー pekempeypekempey
提出日時 2019-07-05 22:01:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,348 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 178,740 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-10-06 21:38:59
合計ジャッジ時間 3,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
10,624 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,248 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 22 ms
6,272 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 3 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 1 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i, n) for (int i = 0; i < (n); i++)
#define repr(i, n) for (int i = (n) - 1; i >= 0; i--)

using namespace std;
using ll = long long;

struct edge {
  int v;
  ll w;
};

vector<ll> distance(const vector<vector<edge>> &g, int s) {
  const int n = g.size();
  priority_queue<pair<ll, int>> q;
  q.emplace(0, s);
  vector<ll> dist(n, 1e18);
  dist[s] = 0;
  while (!q.empty()) {
    int u = q.top().second;
    ll d = -q.top().first;
    q.pop();
    if (dist[u] < d) continue;
    for (edge e : g[u]) {
      if (dist[e.v] > dist[u] + e.w) {
        dist[e.v] = dist[u] + e.w;
        q.emplace(-dist[e.v], e.v);
      }
    }
  }
  return dist;
}

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int N, M, P, Q;
  ll T;
  cin >> N >> M >> P >> Q >> T;
  P--; Q--;
  vector<vector<edge>> g(N);
  rep(i, M) {
    int a, b, c;
    cin >> a >> b >> c;
    a--; b--;
    g[a].push_back((edge){b, c});
    g[b].push_back((edge){a, c});
  }
  vector<ll> distP = distance(g, P);
  vector<ll> distQ = distance(g, Q);
  vector<ll> dist0 = distance(g, 0);
  ll ans = -1;
  if (dist0[P] + distP[Q] + distQ[0] <= T) {
    ans = max(ans, T);
  }
  rep(i, N) {
    if (dist0[i]*2 + max(distP[i]*2, distQ[i]*2) <= T) {
      ans = max(ans, T - max(distP[i]*2, distQ[i]*2));
    }
  }
  cout << ans << endl;
}
0