結果
| 問題 |
No.788 トラックの移動
|
| コンテスト | |
| ユーザー |
siman
|
| 提出日時 | 2023-07-06 23:17:16 |
| 言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 798 ms / 2,000 ms |
| コード長 | 2,021 bytes |
| コンパイル時間 | 5,697 ms |
| コンパイル使用メモリ | 143,868 KB |
| 実行使用メモリ | 35,088 KB |
| 最終ジャッジ日時 | 2024-07-20 18:50:18 |
| 合計ジャッジ時間 | 6,385 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 |
ソースコード
#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 track_cnt = 0;
int T[N];
for (int i = 0; i < N; ++i) {
cin >> T[i];
track_cnt += T[i];
}
if (track_cnt == 1) {
cout << 0 << endl;
return 0;
}
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;
}
siman