|
|||
C — Piles of Dice
In this problem, you have to create a graphical spatial view of a pile of dice using ASCII
characters. The dice are arranged in m rows and n columns and are stacked
on top of each other, forming towers. Rows are numbered from 1 to m, row 1 being the
most far-off, row m being the closest in the graphical view. Columns are numbered
from 1 to n, from left to right. Some dice may cover others, so they can be
partially or entirely hidden in the view. The following figure illustrates the view of a
single die in 6 rows and 7 columns using the characters '
Write a program that creates the graphical spatial view of a pile of dice based on its
description, in the fewest possible rows and columns. Use the ' Input SpecificationThe first line of the input contains two positive integers m and n (1 ≤ m, n ≤ 50). Each of the next m lines consists of n positive integers less than or equal to 50, indicating the heights of the dice towers in each position. Output SpecificationYour program should output the graphical spatial view of the pile of dice according to the above instructions in the minimum required area. Sample Input 1
Output for Sample Input 1
Sample Input 2
Output for Sample Input 2
Sample Input 3
Output for Sample Input 3
|
|||
University of Debrecen; Faculty of Informatics; v. 09/30/2024 |