이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <queue>
#include <stack>
#include <climits>
#include <algorithm>
using namespace std;
long long const INF = 1e15;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
//freopen("in.txt","r",stdin);
int n, m, s, t, u, v;
cin >> n >> m >> s >> t >> u >> v;
vector<vector<long long>>dist(n+1, vector<long long>(n+1, INF));
for(int i = 1; i <= n; i++)
dist[i][i] = 0;
for(int i = 0; i < m; i++){
int a, b, c;
cin >> a >> b >> c;
dist[a][b] = c;
dist[b][a] = c;
}
for(int k = 1; k <= n; k++){
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++){
dist[i][j] = min(dist[i][j], dist[i][k]+dist[k][j]);
}
}
}
long long ans = dist[u][v];
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++){
if(dist[s][i]+dist[i][j]+dist[j][t] == dist[s][t]){
ans = min(ans, min({dist[i][u]+dist[j][v],
dist[i][v]+dist[j][u],
dist[i][u]+dist[i][v],
dist[j][u]+dist[j][v]}));
}
}
}
cout << ans << '\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... |