이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl "\n"
#define all(aa) aa.begin(), aa.end()
int main(){
int n, m;
cin>>n>>m;
vector<int> v(n);
vector<vector<int>> g(n);
for(auto &e:v) cin>>e;
for(int i=0; i<m; i++){
int a, b;
cin>>a>>b;
a--; b--;
g[a].push_back(b);
g[b].push_back(a);
}
vector<int> ans(n, -1), ans2(n, -1), tm(n, -1), tm2(n, -1);
priority_queue<tuple<int, int, int>> pq;
pq.push({0, 0, 0});
while(pq.size()){
auto [t, h, cur]=pq.top();
pq.pop();
if(tm[cur]!=-1) continue;
t=tm[cur]=-t;
h=ans[cur]=-h;
for(auto ch:g[cur]){
pq.push({-max(v[ch], t+1), -max(h, v[ch]), ch});
}
}
pq.push({0, 0, n-1});
while(pq.size()){
auto [t, h, cur]=pq.top();
pq.pop();
if(tm2[cur]!=-1) continue;
h=ans2[cur]=-h;
t=tm2[cur]=-t;
for(auto ch:g[cur]){
pq.push({-max(v[ch], t+1), -max(h, v[ch]), ch});
}
}
int res=INT_MAX;
for(int i=0; i<n; i++){
res=min(res, tm[i]+tm2[i]+abs(ans[i]-ans2[i]));
}
cout<<res<<endl;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |