이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std ;
#define int long long
#define endl '\n'
#define all(a) a.begin() , a.end()
#define alr(a) a.rbegin() , a.rend()
signed main(){
ios_base::sync_with_stdio(0); cin.tie(0);cout.tie(0);
int n, m;
cin >> n >> m;
pair < int , int > first, second;
vector < vector < int >> arr(1 + n);
for(int i = 0 ; i < m ; i++) {
int a, b;
cin >> a >> b;
if(i == 0) {
first = {a, b};
} else if(i == 1) {
second = {a, b};
}
arr[a].push_back(b);
}
int nodes = ((n + 1) * (n + 1)) + 5;
vector < vector < pair < int , int >>> adj(nodes);
for(int i = 0 ; i < n ; i++) {
for(int j = 1 ; j <= 2 ; j++) {
int node = i * (n + 1) + j;
if(i + j < n) {
// cout << node << " " << (i + j) * (n + 1) + j << " 1" << endl;
adj[node].push_back({(i + j) * (n + 1) + j, 1});
// cout << node << " " << (i + j) * (n + 1) + n + 1 << " 1" << endl;
adj[node].push_back({(i + j) * (n + 1) + n + 1, 1});
}
if(i - j >= 0) {
// cout << node << " " << (i - j) * (n + 1) + j << " 1" << endl;
adj[node].push_back({(i - j) * (n + 1) + j, 1});
// cout << node << " " << (i - j) * (n + 1) + n + 1 << " 1" << endl;
adj[node].push_back({(i - j) * (n + 1) + n + 1, 1});
}
}
for(auto j : arr[i]) {
// cout << (i * (n + 1)) + n + 1 << " " << (i * (n + 1)) + j << " " << 0 << endl;
adj[i * (n + 1) + n + 1].push_back({i * (n + 1) + j, 0});
}
}
int st = first.first * (n + 1) + first.second, ed = second.first * (n + 1) + second.second;
vector < int > dis(nodes, 1e12);
priority_queue < pair < int , int >> pq;
pq.push({0, st});
dis[st] = 0;
while(pq.size()) {
auto top = pq.top();
pq.pop();
top.first *= -1;
if(top.first != dis[top.second])
continue;
for(auto ch : adj[top.second]) {
if(dis[ch.first] > top.first + ch.second) {
dis[ch.first] = top.first + ch.second;
pq.push({-dis[ch.first], ch.first});
}
}
}
if(dis[ed] >= 1e9) dis[ed] = -1;
cout << dis[ed] << endl;
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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |