結果
| 問題 | No.788 トラックの移動 |
| コンテスト | |
| ユーザー |
merom686
|
| 提出日時 | 2019-02-08 22:17:15 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 300 ms / 2,000 ms |
| コード長 | 2,050 bytes |
| コンパイル時間 | 1,025 ms |
| コンパイル使用メモリ | 89,460 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-15 06:59:40 |
| 合計ジャッジ時間 | 3,201 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <queue>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;
struct Graph {
struct VertexQ {
bool operator<(const VertexQ& o) const {
return c > o.c; // 逆
}
int i;
ll c;
};
struct Vertex { int n; ll c; };
struct Edge { int i, n, c; };
Graph(int n, int m) : v(n, { -1 }), e(m), n(n), m(0) {}
void add_edge(int i, int j, int c) {
e[m] = { j, v[i].n, c };
v[i].n = m;
m++;
}
void dijkstra(int i) {
for (int i = 0; i < n; i++) v[i].c = 1LL << 60;
priority_queue<VertexQ> q;
q.push({ i, v[i].c = 0 });
while (!q.empty()) {
auto p = q.top(); q.pop();
if (p.c > v[p.i].c) continue;
for (int j = v[p.i].n; j >= 0; j = e[j].n) {
Edge& o = e[j];
ll c = p.c + o.c;
if (c < v[o.i].c) q.push({ o.i, v[o.i].c = c });
}
}
}
vector<Vertex> v;
vector<Edge> e;
int n, m;
};
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n, m, l;
cin >> n >> m >> l;
l--;
vector<int> t(n);
for (int i = 0; i < n; i++) {
cin >> t[i];
}
Graph g(n, m * 2);
for (int i = 0; i < m; i++) {
int a, b, c;
cin >> a >> b >> c;
a--; b--;
g.add_edge(a, b, c);
g.add_edge(b, a, c);
}
g.dijkstra(l);
vector<ll> c(n);
for (int i = 0; i < n; i++) {
c[i] = g.v[i].c;
}
ll r = 1LL << 60;
for (int i = 0; i < n; i++) {
g.dijkstra(i);
ll s = 0;
ll x = 1LL << 60;
for (int j = 0; j < n; j++) {
if (j == i) continue;
if (t[j] > 0) x = min(x, c[j] - g.v[j].c);
s += g.v[j].c * t[j];
}
s *= 2;
if (x < 1LL << 60) s += x;
r = min(r, s);
}
cout << r << endl;
return 0;
}
merom686