pub fn dfs_with_callback<F>( graph: &[Vec<usize>], start: usize, visited: &mut [bool], callback: &mut F, )where F: FnMut(usize),