def reachable_cities(
    n: int,
    edges: list[list[int]],
    k: int
) -> int:
    # your move 