Please read the new rule regarding the restriction on the use of AI tools. ×

Meta Hackercup Practice D2 problem

Revision en3, by ASHWANTH_K, 2024-09-24 12:14:07

Problem D2: Line of Delivery (Part 2) Link

Hello everyone, I'd like to talk about Problem D2 from the recent Meta Hacker Cup 2024 Practice Round. The solution suggests that we can use a treap data structure to efficiently handle the operations described in the problem.

Operation 1) Insert a stone at $$$E_i^{th}$$$ empty position.
Operation 2) Move all stones to the left of the inserted stone by 1 unit in the negative direction.

Yes, treaps can be used to solve this problem, but I’ve come up with a simpler solution using a vector approach. Let's maintain an array called emptyPlaces that stores information about all the empty spots. In this array, I track how many balls are located immediately to the right of each empty position. Additionally, I keep a start pointer to mark the current starting position in the array.

So the above 2 operations can be modified as follows:

Operation 1) empty_places[start + E_i - 1]++;
Operation 2) start++;

Example:

Here in this case, the emptyPlaces array looks like $$$[1,2,1,0,0]$$$

Just maintaining these could get me all the distinct positions of the final balls, and since the thrown balls are in order toward the negative x direction, finding the position of each ball is relatively easy.

Code

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en6 English ASHWANTH_K 2024-09-24 14:23:13 3 Tiny change: ') `empty_places[star' -> ') `emptyPlaces[star'
en5 English ASHWANTH_K 2024-09-24 13:02:09 1 Tiny change: '[start + E_i - 1]++;`' -> '[start + Ei - 1]++;`'
en4 English ASHWANTH_K 2024-09-24 12:18:05 402 (published)
en3 English ASHWANTH_K 2024-09-24 12:14:07 143
en2 English ASHWANTH_K 2024-09-24 12:07:18 2990
en1 English ASHWANTH_K 2024-09-24 11:43:54 696 Initial revision (saved to drafts)