結果

問題 No.788 トラックの移動
ユーザー simansiman
提出日時 2023-07-06 23:15:18
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,911 bytes
コンパイル時間 4,703 ms
コンパイル使用メモリ 106,604 KB
実行使用メモリ 35,240 KB
最終ジャッジ日時 2023-09-28 00:17:57
合計ジャッジ時間 8,049 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 837 ms
35,208 KB
testcase_01 AC 10 ms
35,004 KB
testcase_02 AC 9 ms
35,072 KB
testcase_03 AC 10 ms
35,068 KB
testcase_04 AC 188 ms
35,112 KB
testcase_05 AC 848 ms
35,240 KB
testcase_06 AC 850 ms
35,212 KB
testcase_07 AC 11 ms
35,072 KB
testcase_08 AC 10 ms
35,024 KB
testcase_09 AC 10 ms
35,072 KB
testcase_10 AC 10 ms
35,100 KB
testcase_11 AC 9 ms
35,036 KB
testcase_12 AC 10 ms
35,100 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 168 ms
35,212 KB
testcase_16 AC 692 ms
35,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

struct Node {
  int v;
  ll cost;

  Node(int v = -1, ll cost = -1) {
    this->v = v;
    this->cost = cost;
  }

  bool operator>(const Node &n) const {
    return cost > n.cost;
  }
};

struct Edge {
  int to;
  ll cost;

  Edge(int to, int cost) {
    this->to = to;
    this->cost = cost;
  }
};

ll g_cost[2010][2010];

int main() {
  int N, M, L;
  cin >> N >> M >> L;

  int T[N];
  for (int i = 0; i < N; ++i) {
    cin >> T[i];
  }

  memset(g_cost, 0, sizeof(g_cost));

  vector<Edge> G[N + 1];
  for (int i = 0; i < M; ++i) {
    ll a, b, c;
    cin >> a >> b >> c;

    G[a].push_back(Edge(b, c));
    G[b].push_back(Edge(a, c));
  }

  for (int v = 1; v <= N; ++v) {
    priority_queue <Node, vector<Node>, greater<Node>> pque;
    bool visited[N + 1];
    memset(visited, false, sizeof(visited));

    pque.push(Node(v, 0));
    while (not pque.empty()) {
      Node node = pque.top();
      pque.pop();

      if (visited[node.v]) continue;
      visited[node.v] = true;

      g_cost[v][node.v] = node.cost;

      for (Edge &e : G[node.v]) {
        ll n_cost = node.cost + e.cost;
        pque.push(Node(e.to, n_cost));
      }
    }
  }

  ll ans = LLONG_MAX;

  for (int v = 1; v <= N; ++v) {
    ll base_cost = 0;

    for (int u = 1; u <= N; ++u) {
      base_cost += T[u - 1] * (2 * g_cost[u][v]);
    }

    ll min_cost = LLONG_MAX;

    for (int u = 1; u <= N; ++u) {
      if (T[u - 1] == 0) continue;

      ll new_cost = base_cost;
      new_cost -= 2 * g_cost[u][v];
      new_cost += g_cost[L][u] + g_cost[u][v];

      min_cost = min(min_cost, new_cost);
    }

    ans = min(ans, min_cost);
  }

  cout << ans << endl;

  return 0;
}
0