Submission #869252

# Submission time Handle Problem Language Result Execution time Memory
869252 2023-11-03T19:32:04 Z MinaRagy06 Speedrun (RMI21_speedrun) C++17
29 / 100
26 ms 1716 KB
#include <bits/stdc++.h>
#ifdef MINA
#include "grader.cpp"
#endif
#include "speedrun.h"
using namespace std;
typedef int64_t ll;

void assignHints(int subtask, int n, int a[], int b[]) {
	if (subtask == 1) {
		vector<int> adj[n + 1];
		for (int i = 1; i < n; i++) {
			adj[a[i]].push_back(b[i]);
			adj[b[i]].push_back(a[i]);
		}
		setHintLen(n);
		for (int i = 1; i <= n; i++) {
			for (auto nxt : adj[i]) {
				setHint(i, nxt, 1);
			}
		}
	} else if (subtask == 2) {
		vector<int> adj[n + 1];
		for (int i = 1; i < n; i++) {
			adj[a[i]].push_back(b[i]);
			adj[b[i]].push_back(a[i]);
		}
		setHintLen(11);
		for (int i = 1; i <= n; i++) {
			if (adj[i].size() == 1) {
				int v = adj[i][0];
				for (int b = 0; b < 10; b++) {
					if ((v >> b) & 1) {
						setHint(i, b + 1, 1);
					}
				}
			} else {
				setHint(i, 11, 1);
			}
		}
	}
}
void dfs(int i, int par, int n) {
	for (int nxt = 1; nxt <= n; nxt++) {
		if (nxt == par) continue;
		if (getHint(nxt)) {
			goTo(nxt);
			dfs(nxt, i, n);
		}
	}
	if (par) goTo(par);
}
void dfs2(int i, int par, int n) {
	if (getHint(11)) {
		for (int nxt = 1; nxt <= n; nxt++) {
			if (nxt == par || nxt == i) continue;
			goTo(nxt);
			dfs2(nxt, i, n);
		}
		if (par) goTo(par);
	} else {
		int nxt = 0;
		for (int b = 0; b < 10; b++) {
			if (getHint(b + 1)) nxt |= 1 << b;
		}
		goTo(nxt);
		if (nxt != par) {
			dfs2(nxt, i, n);
		}
	}
}
void speedrun(int subtask, int n, int start) {
	if (subtask == 1) {
		dfs(start, 0, n);
	} else {
		dfs2(start, 0, n);
	}
}
# Verdict Execution time Memory Grader output
1 Correct 21 ms 1080 KB Output is correct
2 Correct 23 ms 1524 KB Output is correct
3 Correct 23 ms 1616 KB Output is correct
4 Correct 26 ms 1716 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 23 ms 1212 KB Output is correct
2 Correct 19 ms 1000 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB setHintLen was never called
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB setHintLen was never called
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB setHintLen was never called
2 Halted 0 ms 0 KB -