日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

CF思维联系– Codeforces-989C C. A Mist of Florescence

發布時間:2023/12/15 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 CF思维联系– Codeforces-989C C. A Mist of Florescence 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

ACM思維題訓練集合

C. A Mist of Florescencetime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output As the boat drifts down the river, a wood full of blossoms shows up on the riverfront.

"I've been here once," Mino exclaims with delight, "it's breathtakingly amazing."

"What is it like?"

"Look, Kanno, you've got your paintbrush, and I've got my words. Have a try, shall we?"

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 $$$a$$$, $$$b$$$, $$$c$$$ 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 $$$a$$$, $$$b$$$, $$$c$$$ and $$$d$$$ ($$$1 \leq a, b, c, d \leq 100$$$)?— 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$$$ ($$$1 \leq n, m \leq 50$$$)?— 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).

ExamplesInputCopy5 3 2 1
OutputCopy4 7
DDDDDDD
DABACAD
DBABACD
DDDDDDDInputCopy50 50 1 1
OutputCopy4 50
CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
ABABABABABABABABABABABABABABABABABABABABABABABABAB
BABABABABABABABABABABABABABABABABABABABABABABABABA
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDInputCopy1 6 4 5
OutputCopy7 7
DDDDDDD
DDDBDBD
DDCDCDD
DBDADBD
DDCDCDD
DBDBDDD
DDDDDDDNote

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

傻逼構造題,我是垃圾

分成四塊涂成四種顏色,然后,點點。

#include <bits/stdc++.h> using namespace std; template <typename t> void read(t &x) {char ch = getchar();x = 0;t f = 1;while (ch < '0' || ch > '9')f = (ch == '-' ? -1 : f), ch = getchar();while (ch >= '0' && ch <= '9')x = x * 10 + ch - '0', ch = getchar();x *= f; }#define wi(n) printf("%d ", n) #define wl(n) printf("%lld ", n) #define rep(m, n, i) for (int i = m; i < n; ++i) #define rrep(m, n, i) for (int i = m; i > n; --i) #define P puts(" ") typedef long long ll; #define MOD 1000000007 #define mp(a, b) make_pair(a, b) #define N 1005 #define fil(a, n) rep(0, n, i) read(a[i]) //---------------https://lunatic.blog.csdn.net/-------------------//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';elsecout << 'D';}cout << endl;}return 0; }

總結

以上是生活随笔為你收集整理的CF思维联系– Codeforces-989C C. A Mist of Florescence的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。