# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
9239 |
2014-09-28T04:57:37 Z |
veckal |
Your life (kriii2_Y) |
C++14 |
|
0 ms |
1240 KB |
#include<cstdio>
#include<vector>
#include<queue>
using namespace std;
const int INF = 987654321;
int n, m;
vector<vector<int>> edge;
int dijkstra() {
vector<int> dist(n, INF);
vector<bool> discovered(n);
discovered[0] = 1;
dist[0] = 0;
queue<int> q;
q.push(0);
while(!q.empty()) {
int here = q.back();
q.pop();
for (int i=0; i<edge[here].size(); ++i) {
int there = edge[here][i];
if (discovered[there]) continue;
dist[there] = dist[here] + 1;
discovered[there] = 1;
q.push(there);
}
}
if (dist[n-1] == INF) return -1;
return dist[n-1];
}
int main() {
scanf("%d%d", &n, &m);
edge = vector<vector<int>>(n);
for (int i=0; i<m; ++i) {
int x, y;
scanf("%d%d", &x, &y);
--x; --y;
edge[x].push_back(y);
}
printf("%d\n", dijkstra());
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
1240 KB |
Output is correct |
2 |
Correct |
0 ms |
1240 KB |
Output is correct |
3 |
Incorrect |
0 ms |
1240 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |