The C++ Stаndаrd Templаte Library (STL) prоvides a wide variety оf cоntainer classes to store and manage collections of objects.1 Analyze and compare the use cases of std::vector and std::list. Your answer should cover the following points: Describe the fundamental data structure used by both std::vector and std::list. Discuss the time complexity of common operations for each container, specifically focusing on: Random access to an element. Insertion and deletion of an element at an arbitrary position (not the end). Insertion and deletion at the end of the container. Explain how each container manages memory, including concepts like capacity for std::vector and how std::list avoids reallocation. Based on your analysis, describe a specific programming scenario where std::vector would be the superior choice and another scenario where std::list would be more appropriate. Justify your choices.