답안 #16035

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
16035 2015-08-10T11:21:08 Z hongjun7 컴퓨터 네트워크 (BOI14_network) C++
0 / 100
122 ms 5076 KB
#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++) 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) {
				if (ping(a, j) == 0) {
					a = j;
					travelTo(j);
					break;
				}
			}
		}
	}
	travelTo(b);
}
# 결과 실행 시간 메모리 Grader output
1 Correct 93 ms 5076 KB Output is correct
2 Incorrect 122 ms 5076 KB Output isn't correct - Travelling to nonadjacent computer
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 78 ms 5076 KB Output is correct
2 Incorrect 28 ms 5076 KB Output isn't correct - Travelling to nonadjacent computer
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 112 ms 5076 KB Output is correct
2 Incorrect 31 ms 5076 KB Output isn't correct - Travelling to nonadjacent computer
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 62 ms 5076 KB Output is correct
2 Incorrect 21 ms 5076 KB Output isn't correct - Travelling to nonadjacent computer
3 Halted 0 ms 0 KB -