
You are given a 0-indexed 2D integer array flowers , where flowers[i] = [start _i , end _i ] means the i ^th flower will be in full bloom from start _i to end _i ( inclusive ). You are also given a 0-indexed integer array people of size n , where people[i] is the time that the i ^th person will arrive to see the flowers.
Return an integer array answer of size n , where answer[i] is the number of flowers that are in full bloom when the i ^th person arrives.
1 <= flowers.length <= 5 * 10 ^4flowers[i].length == 21 <= start _i <= end _i <= 10 ^91 <= people.length <= 5 * 10 ^41 <= people[i] <= 10 ^9