Problem Description
Given the array queries
of positive integers between 1
and m
, you have to process all queries[i]
(from i=0
to i=queries.length-1
) according to the following rules:
- In the beginning, you have the permutation
P=[1,2,3,...,m]
. - For the current
i
, find the position ofqueries[i]
in the permutationP
(indexing from 0) and then move this at the beginning of the permutationP
. Notice that the position ofqueries[i]
inP
is the result forqueries[i]
.
Return an array containing the result for the given queries
.
Key Insights
- We start with a permutation of integers from
1
tom
. - Each query requires finding an element's index and moving it to the front of the permutation.
- The problem involves simulating the movement of elements in an array and maintaining their order based on the queries.
Space and Time Complexity
Time Complexity: O(n * m) in the worst case, where n is the length of queries
and m is the size of the permutation.
Space Complexity: O(m) for storing the permutation.
Solution
The problem can be solved using a simple simulation approach. We maintain a list representing the current permutation. For each query, we find the index of the queried number in the list, store the index as the result, and then move that number to the front of the list. This can be efficiently handled using a list data structure.
- Initialize the permutation
P
as a list containing integers from1
tom
. - For each query in
queries
:- Find the index of the queried number in
P
. - Store the index in the results array.
- Move the queried number to the front of
P
by removing it from its current position and inserting it at the start.
- Find the index of the queried number in
- Return the results array.