HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Volumes > Array and Matrices > problem:


50520 - Filling a Matrix Randomly

Guest
• Review clarifications (1)

Volume problems

• 50449 - The biggest result
• 50442 - Polynomial Addition
• 50434 - Row Min Subtraction
• 50870 - ZScore normalization
• 50869 - Birthday Celebration
• 50821 - Derivative of an array
• 50513 - Climbing Up the Stairs
• 50854 - Area of Triangle Revised
• 50520 - Filling a Matrix Randomly
• 50497 - Falling Bricks - Revisited
• 50847 - The first m trains to leave
• 50669 - Area of an Irregular Polygon
• 50860 - Number of Student Certificates
• 50444 - n digit kth number divisible...
• 50865 - Apartment Building Adminis...
• 51011 - Decoding the Path
• 51019 - Finding the hidden message

Feedback

If you notice incorrect translations in Contester, please let author know.

Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb.
Question by Ibrahim Mesecan.

Filling a Matrix Randomly

Your physics professor, wants to analyze the effect of a random variable on a range. For that he wants fill a range with random colors in such a way that no adjacent two cells (4 sides: Up, Down, Right, Left) will have the same colors.

Question: Write a program that is going to fill a range with the given number of colors complying the given condition above.

Input specification
You will be given only three integers:

  • The number of rows (m) for the given range
  • The number of cols (n) for the given range
  • The number of colors (c) where you can use the colors from 1 to c
where m and n are integers between 0 and 500, and c is an integer between 1 and 100.

Output specification
If possible, fill the given shape with the given colors randomly. Show -1, if it's not possible to fill comply the given criterion. Note: All the colors have to be used at least once.

Sample Input I
5 4 4
Sample Input II
3 4 5
Sample Output I
4 1 4 2
1 4 2 4
2 3 4 3
3 4 1 4
4 1 3 1
Sample Output II
5 3 4 1
3 4 1 3
4 2 3 1


Для отправки решений необходимо выполнить вход.

www.contester.ru