fn cheapest_flight(
    n: i32, 
    flights: &[Vec<i32>], 
    src: i32, 
    dst: i32, 
    k: i32
) -> i32 {
    // your move
}

