I like to read this solution as a small machine: keep the useful information, throw away the noise. For 1409. Queries on a Permutation With Key, the solution in this repository is mainly a straightforward implementation solution.
Guide
What?
The code is easier to read if we treat it as a controlled search through possible states. Instead of trying to be clever immediately, read the code as a sequence of questions:
- What state are we keeping?
- How do we move from one state to the next?
- When do we know the answer is already determined?
For this file, the main tools are: straightforward implementation.
Guide
When?
Use this approach when the hard part is not syntax, but deciding what must stay true after every update. The accepted code reduces that pressure by storing exactly the information that remains useful later.
The important function names to track are processQueries, P.
Guide
Why?
The win comes from making each line carry responsibility: store the useful state, discard the rest, keep moving.
- The final return is not magic; it is the invariant after the loops or recursion have finished doing their accounting.
Guide
How?
Walk through the solution in this order:
- Initialize the memory or helper structure.
- Process candidates in the order the invariant expects.
- Update the answer only when the current state is valid.
- Return the value that represents the fully processed input.
The most important competitive-programming habit here is to trust the invariant. Once the invariant is right, the loops become much less scary.
Guide
Complexity
- Time: O(n) to O(n log n), depending on the dominant loop or data structure operation
- Space: O(n) in the usual case for auxiliary containers or recursion
Guide
C++ Solution
Your submission
The accepted solution
01//Runtime: 20 ms, faster than 80.24% of C++ online submissions for Queries on a Permutation With Key.
02//Memory Usage: 8.3 MB, less than 100.00% of C++ online submissions for Queries on a Permutation With Key.
03class Solution {
04public:
05 vector<int> processQueries(vector<int>& queries, int m) {
06 vector<int> P(m);
07 iota(P.begin(), P.end(), 1);
08
09 vector<int> ans;
10
11 for(int q : queries){
12 int ix = find(P.begin(), P.end(), q) - P.begin();
13 int toMove = P[ix];
14 ans.push_back(ix);
15 P.erase(P.begin()+ix);
16 P.insert(P.begin(), toMove);
17 }
18
19 return ans;
20 }
21};
Cost