CF26C.Parquet

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Once Bob decided to lay a parquet floor in his living room. The living room is of size n×mn×m metres. Bob had planks of three types: aa planks 1×21×2 meters, bb planks 2×12×1 meters, and cc planks 2×22×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.

输入格式

The first input line contains 5 space-separated integer numbers nn , mm , aa , bb , cc ( 1<=n,m<=100,0<=a,b,c<=1041<=n,m<=100,0<=a,b,c<=10^{4} ), nn and mm — the living room dimensions, aa , bb and cc — amount of planks 1×21×2 , 2×12×1 и 2×22×2 respectively. It's not allowed to turn the planks.

输出格式

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 nn lines with mm 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.

输入输出样例

  • 输入#1

    2 6 2 2 1
    

    输出#1

    aabcca
    aabdda
    
  • 输入#2

    1 1 100 100 100
    

    输出#2

    IMPOSSIBLE
    
  • 输入#3

    4 4 10 10 10
    

    输出#3

    aabb
    aabb
    bbaa
    bbaa
    
首页