GUPTA MECHANICAL

IN THIS WEBSITE I CAN TELL ALL ABOUT TECH. TIPS AND TRICKS APP REVIEWS AND UNBOXINGS ALSO TECH. NEWS .............

Sunday 22 May 2022

[Solution] Ants on a Stick Solution Round C 2022 - Kick Start 2022

Problem

Ada has N ants labelled from 1 to N. She decides to test John's concentration skills. She takes a stick L cm long, and drops the ants on it.

The positions on the stick at which the ants are dropped are represented by an integer array P, where ant i is dropped at the position Pi (that is, Pi cm away from the left end) on the stick. Each ant travels either to the left or right with a constant speed of 1 cm per second. The initial directions of the ants is represented by an array D, where the direction of ant i is Di0 if left, and 1 if right. When two ants meet, they bounce off each other and reverse their directions. The ants fall off the stick when they reach either end of it.

Ada challenges John to find the exact order in which the ants fall off the stick. John needs your help!

Input

The first line of the input gives the number of test cases, TT test cases follow.

Solution Click Below:-  CLICK HERE

The first line of each test case contains two integers, N and L: the number of ants, and the length of the stick, respectively.
The next N lines describe the positions and directions of the ants. The i-th line contains two integers, Pi and Di: the position and direction of ant i, respectively.

Output

For each test case, output one line containing Case #xA1A2AN, where x is the test case number (starting from 1), and Ai is the label of the i-th ant that falls off the stick. In other words, the first ant to fall off the stick is the ant labelled A1, the second is the ant labelled A2, and so on. 

If multiple ants fall off at the same time, output their labels in the increasing order.

Limits

Memory limit: 1 GB.
1T100.
N<L.
Di{0,1}, for all i.
0<Pi<L, for all i.
All Pi are distinct.

Test Set 1

Time limit: 20 seconds.
1N10.
1L100.

Test Set 2

Time limit: 40 seconds.
1N103.
1L109.

Test Set 3

Time limit: 40 seconds.
1L109.
For at most 15 cases:
1N105.
For the remaining cases:
1N103.

No comments:

Post a Comment