

Note that if Ninja reaches a particular stop with no fuel, it can still fill his tank at that stop and continue his journey ahead. Similarly, if he reaches his destination with no fuel, it is still considered to have arrived.
Given X = 10, Y = 4, ARR[Y] = {[1, 6], [2, 3], [3, 3], [6, 4]} and Z = 1
So the path followed in this case would look like this:
Ninja starts with 1L of gas.
Drives to the first gas station at position 1, using 1L of gas, then refueling with 6L of gas.
Then, drive to position 6, using 5L of gas, then refueling 4L in the current 1L of gas, making it a total of 5L of gas.
Finally, drive to the destination consuming 4L of gas.
So, Ninja made 2 refueling stops before reaching the destination. So, you need to print 2.
The first line contains an integer ‘T’ which denotes the number of test cases or queries to be run. Then the test cases are as follows.
The first line of each test case contains three space-separated integers ‘X’, ‘Y’ and ‘Z’, denoting distance in miles, number of gas stations, and starting fuel of the vehicle.
The next ‘Y’ lines of each test contain an array of ‘Y’ pairs where each pair denotes the distance from the house and available fuel for a refill.
For each test case, you need to return a single integer denoting the minimum stops made to reach the destination.
Print the output of each test case in a separate line.
You don’t need to print anything; It has already been taken care of. Just implement the given function.
1 <= T <= 10
1 <= X, Z <= 10^7
0 <= size of Y <= 10^5
1 <= Y1, Y2 <= 10^7
Time limit: 1 sec
The simple idea that we use in this approach will be to check all the available paths. For this we create a recursive function let’s say MINIMUM_STOP_HELPER() that will return the desired path. The function will take fuel left, distance travelled, next gas station, and the array of all the stations as its parameters.
The base conditions for this recursive function will be:
In this approach, we will use a DP array that will store the farthest distance we can get using “INDEX” number of refuelling stops, where “INDEX” is the position at which it is stored in the DP array. Finally, we will get the smallest “INDEX” for which DP[INDEX] is greater than or equal to our destination.
In this approach, the basic idea that we will use is that we will refuel the vehicle only when the need arises. There are just two cases when we are required to fill:
Whenever one of the above two cases arrive, we search for the fuel station that we have passed till now, and have the maximum fuel, and if that station can not provide us enough fuel to reach the next station or the destination, then we will be required to refuel again using the same procedure.