結果

問題 No.788 トラックの移動
ユーザー risujirohrisujiroh
提出日時 2019-02-08 21:49:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 430 ms / 2,000 ms
コード長 1,703 bytes
コンパイル時間 1,787 ms
コンパイル使用メモリ 180,432 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 22:55:00
合計ジャッジ時間 4,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 397 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 92 ms
5,376 KB
testcase_05 AC 382 ms
5,376 KB
testcase_06 AC 404 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 56 ms
5,376 KB
testcase_16 AC 430 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using uint = unsigned int;
using lint = long long int;
using ulint = unsigned long long int;
template<class T = int> using V = vector<T>;
template<class T = int> using VV = V< V<T> >;
template<class T, class U> void assign(V<T>& v, int n, const U& a) { v.assign(n, a); }
template<class T, class... Args> void assign(V<T>& v, int n, const Args&... args) { v.resize(n); for (auto&& e : v) assign(e, args...); }


struct Edge { int to; lint cost; };

template<class T, class Edge> V<T> dijkstra(const VV<Edge>& g, int s = 0) {
  V<T> dist(g.size(), numeric_limits<T>::max());
  using P = pair<T, int>;
  priority_queue<P, V<P>, greater<P> > pque;
  pque.emplace(dist[s] = 0, s);
  while (!pque.empty()) {
    T d; int v;
    tie(d, v) = pque.top(); pque.pop();
    if (d > dist[v]) continue;
    for (const auto& e : g[v]) {
      if (dist[e.to] <= dist[v] + e.cost) continue;
      pque.emplace(dist[e.to] = dist[v] + e.cost, e.to);
    } 
  }
  return dist;
}

int main() {
  cin.tie(nullptr); ios_base::sync_with_stdio(false);
  int n, m, l; cin >> n >> m >> l, --l;
  V<lint> t(n); for (int i = 0; i < n; ++i) cin >> t[i];
  VV<Edge> g(n);
  for (int i = 0; i < m; ++i) {
    int a, b, c; cin >> a >> b >> c, --a, --b;
    g[a].emplace_back(Edge{b, c});
    g[b].emplace_back(Edge{a, c});
  }
  auto dl = dijkstra<lint>(g, l);
  lint res = 9e18;
  for (int v = 0; v < n; ++v) {
    auto d = dijkstra<lint>(g, v);
    lint curr = 2 * inner_product(begin(t), end(t), begin(d), 0LL);
    lint mx = 0;
    for (int u = 0; u < n; ++u) if (t[u] > 0) {
      mx = max(mx, d[u] - dl[u]);
    }
    curr -= mx;
    res = min(res, curr);
  }
  cout << res << '\n';
}
0