이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
int main() {
ios_base::sync_with_stdio(0), cin.tie(0);
int n, m;
cin >> n >> m;
int s, t, u, v;
cin >> s >> t;
cin >> u >> v;
s--, t--, u--, v--;
ll dist[n][n];
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
dist[i][j] = 1e18;
}
dist[i][i] = 0;
}
for (int i = 0, x, y, w; i < m; i++) {
cin >> x >> y >> w;
x--, y--;
dist[x][y] = dist[y][x] = w;
}
for (int k = 0; k < n; k++) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j]);
}
}
}
ll mn = 1e18, best = 1e18;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (dist[s][i] + dist[i][j] + dist[j][t] < mn) {
mn = dist[s][i] + dist[i][j] + dist[j][t];
best = min({dist[u][i] + dist[j][v], dist[v][i] + dist[j][u]});
} else if (dist[s][i] + dist[i][j] + dist[j][t] == mn) {
best = min({best, dist[u][i] + dist[j][v], dist[v][i] + dist[j][u]});
}
}
}
best = min(best, dist[u][v]);
cout << best << '\n';
return 0;
}
# | 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... |