Codeforces 989C A Mist of Florescence 构造

C. A Mist of Florescence
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

There are four kinds of flowers in the wood, Amaranths, Begonias, Centaureas and Dianthuses.

The wood can be represented by a rectangular grid of nn rows and mm columns. In each cell of the grid, there is exactly one type of flowers.

According to Mino, the numbers of connected components formed by each kind of flowers are aabbcc and dd respectively. Two cells are considered in the same connected component if and only if a path exists between them that moves between cells sharing common edges and passes only through cells containing the same flowers.

You are to help Kanno depict such a grid of flowers, with nn and mm arbitrarily chosen under the constraints given below. It can be shown that at least one solution exists under the constraints of this problem.

Note that you can choose arbitrary nn and mm under the constraints below, they are not given in the input.

Input

The first and only line of input contains four space-separated integers aabbcc and dd (1a,b,c,d1001≤a,b,c,d≤100) — the required number of connected components of Amaranths, Begonias, Centaureas and Dianthuses, respectively.

Output

In the first line, output two space-separated integers nn and mm (1n,m501≤n,m≤50) — the number of rows and the number of columns in the grid respectively.

Then output nn lines each consisting of mm consecutive English letters, representing one row of the grid. Each letter should be among 'A', 'B', 'C' and 'D', representing Amaranths, Begonias, Centaureas and Dianthuses, respectively.

In case there are multiple solutions, print any. You can output each letter in either case (upper or lower).

Examples
input
Copy
5 3 2 1
output
Copy
4 7
DDDDDDD
DABACAD
DBABACD
DDDDDDD
input
Copy
50 50 1 1
output
Copy
4 50
CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
ABABABABABABABABABABABABABABABABABABABABABABABABAB
BABABABABABABABABABABABABABABABABABABABABABABABABA
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD
input
Copy
1 6 4 5
output
Copy
7 7
DDDDDDD
DDDBDBD
DDCDCDD
DBDADBD
DDCDCDD
DBDBDDD
DDDDDDD
Note

In the first example, each cell of Amaranths, Begonias and Centaureas forms a connected component, while all the Dianthuses form one.


一开始想了一个特别麻烦的构造法,本辣鸡2h以内写不出来的那种。最后思路参照了其他博客里的。每个色块最多一百种,棋盘最大却有2500,完全可以把棋盘分为四部分,每个部分有个背景色,背景色里丢进去几个小色块,完全丢得开。a色里丢d,b色里丢c,c色里丢b,d色里丢a,丢的小色块个数比要求的个数少一。这种构造法可真是太机智了,它告诉我们做题一定要注意看数据范围呀!

贴上重复且重复的代码:

#include<iostream>
#include<cstdio>
#include<string.h>
#include<algorithm>
using namespace std;

int mapp[100][100];
int a[5];

int main()
{
    memset(mapp,0,sizeof(mapp));
    for (int i=1; i<=4; i++)
    {
        scanf("%d",&a[i]);
        a[i]--;
    }
    int p=2; int q=2;
    for (int i=1; i<=a[1]; i++)
    {
        mapp[p][q]=1;
        p+=2;
        if (p>24)
        {
            p=2; q+=2;
        }
    }
    p=27; q=2;
    for (int i=1; i<=a[2]; i++)
    {
        mapp[p][q]=2;
        p+=2;
        if (p>49)
        {
            p=27; q+=2;
        }
    }
    p=2; q=27;
    for (int i=1; i<=a[3]; i++)
    {
        mapp[p][q]=3;
        p+=2;
        if (p>24)
        {
            p=2; q+=2;
        }
    }
    p=27; q=27;
    for (int i=1; i<=a[4]; i++)
    {
        //cout<<"p="<<p<<" q="<<q<<endl;
        mapp[p][q]=4;
        p+=2;
        if (p>49)
        {
            p=27; q+=2;
        }
    }
    cout<<"50 50"<<endl;
    for (int i=1; i<=50; i++)
    {
        for (int j=1; j<=50; j++)
        {
            if (mapp[i][j]==1 || mapp[i][j]==0 && i>=26 &&j>=26) cout<<'A';
            else if (mapp[i][j]==2 || mapp[i][j]==0 && i<=25 &&j>=26) cout<<'B';
            else if (mapp[i][j]==3 || mapp[i][j]==0 && i>=26 && j<=25) cout<<'C';
            else cout<<'D';
        }
        cout<<endl;
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值