#include "network.h"
int d[2005];
void findRoute(int N, int a, int b) {
int dist = ping(a, b);
for (int i = 1; i <= N; i++) d[i] = 0;
for (int i = 1; i <= N; i++) if (i != a) d[i] = ping(a, i) + 1;
for (int i = 1; i <= dist; i++) {
for (int j = 1; j <= N; j++) {
if (d[j] - d[a] == 1) {
int v = ping(a, j);
if (v == 0) {
a = j;
travelTo(j);
break;
}
}
}
}
travelTo(b);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
117 ms |
5076 KB |
Output is correct |
2 |
Incorrect |
142 ms |
5076 KB |
Output isn't correct - Travelling to nonadjacent computer |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
116 ms |
5076 KB |
Output is correct |
2 |
Incorrect |
25 ms |
5076 KB |
Output isn't correct - Travelling to nonadjacent computer |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
74 ms |
5076 KB |
Output is correct |
2 |
Incorrect |
37 ms |
5076 KB |
Output isn't correct - Travelling to nonadjacent computer |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
89 ms |
5076 KB |
Output is correct |
2 |
Incorrect |
22 ms |
5076 KB |
Output isn't correct - Travelling to nonadjacent computer |
3 |
Halted |
0 ms |
0 KB |
- |