RMQ => Range Minimum (or Maximum) Query. Problem Statement: Given an array of numbers, pre-process the array so that questions such as "Return the maximum element between array indices 11 and 23" can be answered efficiently. Described solution: The solution describes pre-processes the input array (of n elements) in O(n^2) time, and answers RM queries in O(1) time.