| Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. 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:
 
where m and n are integers between 0 and 500, and c is 
an integer between 1 and 100.The number of rows (m) for the given rangeThe number of cols (n) for the given rangeThe number of colors (c) where you can use the 
colors from 1 to c 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 21 4 2 4
 2 3 4 3
 3 4 1 4
 4 1 3 1
 
 | Sample Output II 
 
5 3 4 13 4 1 3
 4 2 3 1
 
 |  
 Для отправки решений необходимо выполнить вход.
 
 
 |