Hey everyone, I was solving this trie problem. At first, I was trying to solve this using std::unordered_map which causes TLE, but then, I tried using static array, and then it worked fine.
Solution with std::unordered_map: link https://pastebin.com/LtLQ47fk
Spoiler
Solution using static array: (link) https://pastebin.com/BUDPhxXk