이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const long long INF = 1e18;
vector<vector<pair<int, int>>> g;
void djikstra(int src, vector<long long> &sp) {
priority_queue<pair<long long, int>, vector<pair<long long, int>>, greater<pair<long long, int>>> pq;
sp[src] = 0;
pq.push({0, src});
while (pq.size()) {
int u = pq.top().second;
pq.pop();
for (auto [v, w] : g[u])
if (sp[v] > sp[u] + w)
sp[v] = sp[u] + w, pq.push({sp[v], v});
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
int n, m, S, T, U, V;
cin >> n >> m >> S >> T >> U >> V;
--S, --T, --U, --V;
g.resize(n);
for (int i = 0; i < m; i++) {
int a, b, c;
cin >> a >> b >> c;
--a, --b;
g[a].push_back({b, c});
g[b].push_back({a, c});
}
vector<vector<long long>> sp(4, vector<long long> (n, INF));
djikstra(S, sp[0]);
djikstra(T, sp[1]);
djikstra(U, sp[2]);
djikstra(V, sp[3]);
long long d1 = INF, d2 = INF;
for (int i = 0; i < n; i++) {
if (sp[0][i] + sp[1][i] == sp[0][T]) {
d1 = min(d1, sp[2][i]);
d2 = min(d2, sp[3][i]);
}
}
cout << min(d1 + d2, sp[2][V]);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |