# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
9470 |
2014-09-28T06:38:47 Z |
levant916 |
Your life (kriii2_Y) |
C++ |
|
0 ms |
2068 KB |
#include <iostream>
#include <string>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <utility>
using namespace std;
int dp[100001];
int M, N;
typedef pair<int, int> PAIR;
int main(void) {
int x, y;
vector<PAIR> edge;
cin >> N >> M;
for (int i = 0; i < M; i++) {
cin >> x >> y;
edge.push_back(PAIR(x, y));
}
sort(edge.begin(), edge.end());
for (vector<PAIR>::iterator itor = edge.begin(); itor != edge.end(); itor++) {
x = itor->first; y = itor->second;
if (dp[y] == 0) {
dp[y] = dp[x] + 1;
}
else if (dp[y] > dp[x] + 1){
dp[y] = dp[x] + 1;
}
}
cout << dp[N] << endl;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
2068 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |