3726.Parquet

Time Limit: 1s Memory Limit: 256MB

Once Bob decided to lay a parquet floor in his living room. The living room is of size n \times m metres. Bob had planks of three types: a planks 1 \times 2 meters, b planks 2 \times 1 meters, and c planks 2 \times 2 meters. Help Bob find out, if it is possible to parquet the living room with such a set of planks, and if it is possible, find one of the possible ways to do so. Bob doesn't have to use all the planks.

Input Format(From the terminal/stdin)

The first input line contains 5 space-separated integer numbers n, m, a, b, c (1 \le n,m \le 100,0 \le a,b,c \le 104), n and m - the living room dimensions, a, b and c - amount of planks 1 \times 2, 2 \times 1 , 2 \times 2 respectively. It's not allowed to turn the planks.

Output Format(To the terminal/stdout)

If it is not possible to parquet the room with such a set of planks, output IMPOSSIBLE. Otherwise output one of the possible ways to parquet the room - output n lines with m lower-case Latin letters each. Two squares with common sides should contain the same letters, if they belong to one and the same plank, and different letters otherwise. Different planks can be marked with one and the same letter (see examples). If the answer is not unique, output any.

Sample Input 1

Copy
2 6 2 2 1
 · · · · \n

Sample Output 1

Copy
aabcca
aabdda
      \n
      \n

Sample Input 2

Copy
1 1 100 100 100
 · ·   ·   ·   \n

Sample Output 2

Copy
IMPOSSIBLE
          \n

Sample Input 3

Copy
4 4 10 10 10
 · ·  ·  ·  \n

Sample Output 3

Copy
aabb
aabb
bbaa
bbaa
    \n
    \n
    \n
    \n

Submit

请先 登录

© 2025 FAQs