답안 #736976

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
736976 2023-05-06T11:59:27 Z jk410 Speedrun (RMI21_speedrun) C++17
21 / 100
43 ms 688 KB
#include "speedrun.h"

void assignHints(int subtask, int N, int A[], int B[]) {
	setHintLen(N);
	for (int i = 1; i < N; i++) {
		setHint(A[i], B[i], 1);
		setHint(B[i], A[i], 1);
	}
}

void dfs(int v, int par, int n) {
	for (int i = 1; i <= n; i++) {
		if (i == par)
			continue;
		if (getHint(i)) {
			goTo(i);
			dfs(i, v, n);
		}
	}
	if (par)
		goTo(par);
}

void speedrun(int subtask, int N, int start) {
	dfs(start, 0, N);
}
# 결과 실행 시간 메모리 Grader output
1 Correct 38 ms 636 KB Output is correct
2 Correct 39 ms 688 KB Output is correct
3 Correct 43 ms 632 KB Output is correct
4 Correct 32 ms 544 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB The length is too large
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 208 KB The length is too large
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB The length is too large
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB The length is too large
2 Halted 0 ms 0 KB -