이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int nx=1e5+5;
ll n, m, s, t, a, b, u, v, w, ans, dp[nx][2];
bool vs[nx];
vector<vector<pair<ll, ll>>> d(nx);
vector<ll> S(nx), A(nx), B(nx);
void dij(int u, vector<ll> &v)
{
priority_queue<pair<ll, ll>, vector<pair<ll, ll>>, greater<pair<ll, ll>>> pq;
for (int i=1; i<=n; i++) v[i]=1e16;
v[u]=0;
pq.push({0, u});
while (!pq.empty())
{
auto [cw, cl]=pq.top();
pq.pop();
for (auto [nl, nw]:d[cl])
{
if (v[nl]>cw+nw)
{
pq.push({cw+nw, nl});
v[nl]=cw+nw;
}
}
}
}
void dfs(int u)
{
if (vs[u]) return;
vs[u]=1;
dp[u][0]=A[u];
dp[u][1]=B[u];
for (auto [nl, nw]:d[u])
{
if (S[nl]+nw==S[u])
{
dfs(nl);
dp[u][0]=min(dp[u][0], dp[nl][0]);
dp[u][1]=min(dp[u][1], dp[nl][1]);
}
}
ans=min({ans, dp[u][0]+B[u], dp[u][1]+A[u]});
}
int main()
{
cin.tie(NULL)->sync_with_stdio(false);
cin>>n>>m>>s>>t>>a>>b;
for (int i=0; i<m; i++) cin>>u>>v>>w, d[u].push_back({v, w}), d[v].push_back({u, w});
dij(s, S);
dij(a, A);
dij(b, B);
for (int i=1; i<=n; i++) dp[i][0]=dp[i][1]=1e16;
ans=A[b];
dfs(t);
cout<<ans;
}
# | 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... |