#include "citymapping.h"
void find_roads(int N, int Q, int A[], int B[], int W[]) {
int xx = 0;
for (int i = 1; i <= N; i++) {
for (int j = i + 1; j <= N; j++) {
int temp = get_distance(i, j);
if (temp == 1) {
A[xx] = i;
B[xx] = j;
W[xx] = 1;
}
}
}
return;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
40 ms |
448 KB |
Reported list of edges differ from actual. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
40 ms |
448 KB |
Reported list of edges differ from actual. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
468 KB |
Too many calls to get_distance(). |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
468 KB |
Too many calls to get_distance(). |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
40 ms |
448 KB |
Reported list of edges differ from actual. |
2 |
Halted |
0 ms |
0 KB |
- |