The height of the tower is calculated by adding the width of all the coins used in the formation of this tower.
The first line contains a single integer βTβ representing the number of test cases.
The first line of each test case will contain a single integer βNβ which denotes the number of coins available.
The next βNβ lines contain the two space-separated integers βARR[i][0]β and βARR[i][1]β, where βARR[i][0]β is the width of the βi-thβ coin and βARR[i][1]β is the diameter of the βi-thβ coin.
For each test case, return the maximum possible height of the tower.
Output for every test case will be printed 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 <= 50
1 <= N <= 10^4
1 <= ARR[i][0] and ARR[i][1] <= 10^5
Time limit: 1 sec
The basic idea is to first sort the given array/list of integers in the increasing order of width and then just find the longest increasing subsequence of coins on the basis of their diameter.
We are here using a helper function that is recursive in nature and it is used to find the LIS (Longest Increasing Subsequence) of coins on the basis of diameter.
int helper(vector<vector<int>> &arr, int previous, int current)
Where βARRβ is the vector/list of pairs of integers that contain all the given coins (width of the coins of first and diameter on second), βPREVIOUSβ is the maximum diameter of the previous coins, and βCURRENTβ is the index of the current coin.
There will be two types of recursive calls: first, in which we will consider picking the current coin and second, in which we drop the current coin.
The steps are as follows:
The basic idea of this approach is to compute the LIS(Longest Increasing Subsequence) for the starting βiβ coins and by using this result compute LIS for the starting βiβ + 1 coins.
Reference: https://cpalgorithms.com/sequences/longest_increasing_subsequence.html
The steps are as follows:
The basic idea of this approach is to store the tail (or last and the least) element of the LIS of lengths 1, 2, 3, and so on. Whenever we found a new element that is greater than the last filled element in the βTAILβ array then just append this to the array because it increases the previous longest length of LIS. Otherwise, replace this element with the element just greater than this in the already picked element ( in the βTAILβ array).
The steps are as follows: