GUPTA MECHANICAL

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

Sunday 24 April 2022

Pancake Deque Solution Round 1B 2022 - Code Jam 2022


Problem

Pancakes are normally served in stacks, but the Infinite House of Pancakes embraces change! The restaurant's new advertising hook is to serve the pancakes from a deque, or double-ended queue.

You are a server at the restaurant, and your job is to serve every pancake in the deque. Customers will arrive one at a time, and each one gets a single pancake. You must serve each customer either the leftmost or rightmost pancake in the deque; the choice is yours. When a pancake is served, it disappears from the deque, exposing the pancake that was next to it. Or, once there is only one pancake left, your only choice is to serve that one, and then your job is complete!

Illustration of Sample #2.

Each pancake has a deliciousness level. Because customers do not get to choose which pancakes they get, each customer only has to pay for their pancake if it is at least as delicious as each of the pancakes that all of the previous customers got. (The first customer always pays for their pancake, since in that case there are no previous customers.)

How many customers will pay for their pancake, if you serve the pancakes in an order that maximizes that number?

Solution Click Below:- 

Input

The first line of the input gives the number of test cases, TT test cases follow. Each test case is described with two lines. The first line of a test case contains a single integer N, the number of pancakes in the pancake deque. The second line of a test case contains N integers D1,D2,,DN, where Di is the deliciousness level of the i-th pancake from the left in the deque.

Output

For each test case, output one line containing Case #xy, where x is the test case number (starting from 1) and y is the number of customers who pay for their pancakes, if you serve the pancakes in an order that maximizes that number.

Limits

Time limit: 20 seconds.
Memory limit: 1 GB.
1T100.
1Di106, for all i.

Test Set 1 (Visible Verdict)

2N20.

Test Set 2 (Visible Verdict)

2N100.

Test Set 3 (Hidden Verdict)

2N105.

Sample

Sample Input

4
2
1 5
4
1 4 2 3
5
10 10 10 10 10
4
7 1 3 1000000
Sample Output

Case #1: 2
Case #2: 3
Case #3: 5
Case #4: 2

In Sample Case #1, there are two possible orders in which you can serve the pancakes. If you serve the pancake with deliciousness level 5 first, only that one is paid for. If you serve the pancake with deliciousness level 1 first, both are paid for.

Sample Case #2 is the image shown in the problem statement. The following are the possible orders (by deliciousness level) in which the pancakes can be served. The underlined pancakes are the ones that customers pay for.

  • 1_,4_,2,3
  • 1_,4_,3,2
  • 1_,3_,4_,2
  • 1_,3_,2,4_
  • 3_,1,4_,2
  • 3_,1,2,4_
  • 3_,2,1,4_
  • 3_,2,4_,1

As you can see, there are some orders in which 3 pancakes are paid for, and none in which all 4 are.

In Sample Case #3, all pancakes are paid for regardless of the serving order.

In Sample Case #4, regardless of which pancake you serve first, the two in the middle will never be paid for. The best you can do is serve the pancake with deliciousness 7 before the pancake with deliciousness 1000000.


Join Now for Solution:- 
                                                                        

No comments:

Post a Comment