Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Should use Java Problem 3 (Queue) Your task is to construct a tower in n days by following these conditions: Every day you are provided
Should use Java
Problem 3 (Queue) Your task is to construct a tower in n days by following these conditions: Every day you are provided with one disk of distinct size. The disk with larger sizes should be placed at the bottom of the tower. The disk with smaller sizes should be placed at the top of the tower. The order in which tower must be constructed is as follows: You cannot put a new disk on the top of the tower until all the larger disks that are given to you get placed Print N lines denoting the disk sizes that can be put on the tower on the ithday. Input format First line: N denoting the total number of disks that are given to you in the Nsubsequent days Second line: Nintegers in which the ith integers denote the size of the disks that are given to you on the ith day Note: All the disk sizes are distinct integers in the range of 1 to N. Output format Print N lines. In the ita line, print the size of disks that can be placed on the top of the tower in descending order of the disk sizes. If on the ithday no disks can be placed, then leave that line empty. Constraints 1SN5106 1-size of a disks Sample Input 5 4 5 1 2 3 Sample Output 5 4 3 2 2
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started