Codeforces Round #487 (Div. 2) C. 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 n rows and m 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 abc and d 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 n and m 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 n and m under the constraints below, they are not given in the input.

Input

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

Output

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

Then output n lines each consisting of m 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.


題目:要求構造一個矩陣,其中有a個A,b個B,c個C,d個D的聯通塊。
分析:其實自己畫一個圖就能夠明白啦!!!

代碼:

#include <bits/stdc++.h>
using namespace std;

int a, b, c, d;
char mp[51][51];

int main()
{
    while(~scanf("%d%d%d%d", &a, &b, &c, &d))
    {
        for(int i = 1; i <= 50; i++)
            for(int j = 1; j <= 50; j++)
                mp[i][j] = 'D';
        for(int i = 1; i <= 21; i++)
            for(int j = 1; j <= 21; j++)
                mp[i][j] = 'A';
        for(int i = 2;d>1&&i<=20; i+=2)
            for(int j = 2;d>1&&j<=20; j+=2)
                mp[i][j] = 'D', d--;
        a--;
        for(int i = 2; (a||b||c)&&i <= 20; i+=2)
            for(int j = 23; j <= 49; j+=2)
                if(a) mp[i][j] = 'A', a--;
                else if(b) mp[i][j] = 'B', b--;
                else if(c) mp[i][j] = 'C', c--;

        for(int i = 23; (a||b||c)&&i <= 49; i+=2)
            for(int j = 23; j <= 49; j+=2)
                if(a) mp[i][j] = 'A', a--;
                else if(b) mp[i][j] = 'B', b--;
                else if(c) mp[i][j] = 'C', c--;
        printf("50 50\n");
        for(int i = 1; i <= 50; i++) {
			printf("%s\n", mp[i]+1);
		}
    }
    return 0;
}


發佈了356 篇原創文章 · 獲贊 30 · 訪問量 10萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章