CF534F.Simplified Nonogram
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
In this task you have to write a program dealing with nonograms on fields no larger than 5×20 .
Simplified nonogram is a task where you have to build such field (each cell is either white or black) that satisfies the given information about rows and columns. For each row and each column the number of contiguous black segments is specified.
For example if size of the field is n=3,m=5 , аnd numbers of contiguous black segments in rows are: [2,3,2] and in columns are: [1,0,1,2,1] then the solution may look like:
It is guaranteed that on each test in the testset there exists at least one solution.
输入格式
In the first line there follow two integers n , m ( 1<=n<=5,1<=m<=20 ) — number of rows and number of columns respectively.
Second line contains n integers a1,a2,...,an where ai is the number of contiguous black segments in i -th row of the field.
Similarly, third line contains m integers b1,b2,...,bm where bi is the number of contiguous black segments in the i -th column of the field.
It is guaranteed that there exists at least one solution.
输出格式
Output any possible solution. Output should consist of n lines each containing m characters. Denote white cell as "." and black cell as "*".
输入输出样例
输入#1
3 5 2 3 2 1 0 1 2 1
输出#1
*.**. *.*.* *..**
输入#2
3 3 2 1 2 2 1 2
输出#2
*.* .*. *.*
输入#3
3 3 1 0 1 2 2 2
输出#3
*** ... ***