#P7029. [NWRRC 2017] Kotlin Island

[NWRRC 2017] Kotlin Island

题目描述

There is an urban myth that Peter the Great wanted to make a rectangular channel-grid engineering masterpiece not only from Vasilyevskiy island, but also from Kotlin island (where the town of Kronstadt is located nowadays).

The following mathematical model was (allegedly) presented to the tsar. The island is considered a rectangular grid hh cells high and ww cells wide. Each cell is dry land initially but can become water.

Technologies of those days allowed engineers to dig a channel across the entire island. In that case an entire row or an entire column of cells became water. If some of these cells already were water, their status did not change.

Your task is to propose a plan of the island which has exactly nn connected components of dry land cells.

输入格式

The only line of the input contains three integers h,wh , w , and nn -- grid's height, width and the desired number of connected components (1h,w100(1 \le h , w \le 100 ; 1n109).1 \le n \le 10^{9}).

输出格式

If there is no valid plan containing nn connected components, output a single word Impossible.

Otherwise output hh lines of length ww depicting the plan. Dot (.)(‘. ') represents a dry land cell, hash (‘#') represents a water cell.

3 5 4

..#..
#####
..#..

2 1 1

#
.

5 3 10

Impossible

提示

Time limit: 3 s, Memory limit: 512 MB.