답안 #871521

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
871521 2023-11-11T04:51:26 Z TAhmed33 Speedrun (RMI21_speedrun) C++17
0 / 100
3500 ms 1248 KB
#include <bits/stdc++.h>
#include "speedrun.h"
using namespace std;
void assignHints (int subtask, int n, int a[], int b[]) {
	setHintLen(n);
	bool adj[n + 1][n + 1]; memset(adj, 0, sizeof(adj));
	for (int i = 1; i < n; i++) {
		adj[a[i]][b[i]] = adj[b[i]][a[i]] = 1;
	}
	for (int i = 1; i <= n; i++) {
		for (int j = 1; j <= n; j++) {
			setHint(i, j, adj[i][j]);
		}
	}
	return;
}
vector <vector <int>> adj;
int n;
void dfs (int pos, int par) {
	for (int j = 1; j <= n; j++) {
		if (j == par || pos == j) continue;
		if (adj[pos][j] == 0) continue;
		if (adj[pos][j] == 1) {
			goTo(j); dfs(j, pos); goTo(pos);
		}
		if (adj[pos][j] == -1) {
			int x = goTo(j);
			adj[j][pos] = adj[pos][j] = x;
			if (x) {
				dfs(j, pos);
				goTo(pos);
			} 
		}
	}
}
void speedrun (int subtask, int N, int start) {
	adj.clear(); 
	n = N;
	adj = vector <vector <int>> (n + 1, vector <int> (n + 1));
	for (int i = 1; i <= n; i++) for (int j = 1; j <= n; j++) adj[i][j] = -1;
	dfs(start, -1);
	return;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3518 ms 1248 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB The length is too large
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB The length is too large
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB The length is too large
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB The length is too large
2 Halted 0 ms 0 KB -