CF720C.Homework
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Today Peter has got an additional homework for tomorrow. The teacher has given three integers to him: n , m and k , and asked him to mark one or more squares on a square grid of size n×m .
The marked squares must form a connected figure, and there must be exactly k triples of marked squares that form an L-shaped tromino — all three squares are inside a 2×2 square.
The set of squares forms a connected figure if it is possible to get from any square to any other one if you are allowed to move from a square to any adjacent by a common side square.
Peter cannot fulfill the task, so he asks you for help. Help him to create such figure.
输入格式
Input data contains one or more test cases. The first line contains the number of test cases t ( 1<=t<=100 ).
Each of the following t test cases is described by a line that contains three integers: n , m and k ( 3<=n,m , n×m<=105 , 0<=k<=109 ).
The sum of values of n×m for all tests in one input data doesn't exceed 105 .
输出格式
For each test case print the answer.
If it is possible to create such figure, print n lines, m characters each, use asterisk '*' to denote the marked square, and dot '.' to denote the unmarked one.
If there is no solution, print -1.
Print empty line between test cases.
输入输出样例
输入#1
3 3 3 4 3 3 5 3 3 3
输出#1
.*. *** .*. **. **. *.. .*. *** *..