def cheapest_flight(
    n: int, 
    flights: list[list[int]],
    src: int, 
    dst: int, 
    k: int
) -> int:
    # your move
