Given a set of reviews provided by the customers for different hotels and a string containing Good Words, you need to sort the reviews in descending order according to their Goodness Value (Higher goodness value first). We define the Goodness Value of a string as the number of Good Words in that string.
NOTE: Sorting should be stable. If review i and review j have the same Goodness Value then their original order would be preserved.
You are expected to use Trie in an Interview for such problems
Problem Constraints
Input Format
First argument is a string A containing "Good Words" separated by "_" character
Second argument is a vector B of strings containing Hotel Reviews. Review strings are also separated by "_" character.
Output Format
Return a vector of integers which contain the original indexes of the reviews in the sorted order of reviews.
Example Input
Input 1:
A = "cool_ice_wifi"
B = ["water_is_cool", "cold_ice_drink", "cool_wifi_speed"]
Example Output