Codeforces Beta Round #36 / 36B Fractal(分形&模拟)

B. Fractal
time limit per test
2 seconds
memory limit per test
64 megabytes
input
input.txt
output
output.txt

Ever since Kalevitch, a famous Berland abstractionist, heard of fractals, he made them the main topic of his canvases. Every morning the artist takes a piece of graph paper and starts with making a model of his future canvas. He takes a square as big as n × n squares and paints some of them black. Then he takes a clean square piece of paper and paints the fractal using the following algorithm:

Step 1. The paper is divided into n2 identical squares and some of them are painted black according to the model.

Step 2. Every square that remains white is divided into n2 smaller squares and some of them are painted black according to the model.

Every following step repeats step 2.

Unfortunately, this tiresome work demands too much time from the painting genius. Kalevitch has been dreaming of making the process automatic to move to making 3D or even 4D fractals.

Input

The first line contains integers n and k (2 ≤ n ≤ 31 ≤ k ≤ 5), where k is the amount of steps of the algorithm. Each of the following nlines contains n symbols that determine the model. Symbol «.» stands for a white square, whereas «*» stands for a black one. It is guaranteed that the model has at least one white square.

Output

Output a matrix nk × nk which is what a picture should look like after k steps of the algorithm.

Sample test(s)
input
2 3
.*
..
output
.*******
..******
.*.*****
....****
.***.***
..**..**
.*.*.*.*
........
input
3 2
.*.
***
.*.
output
.*.***.*.
*********
.*.***.*.
*********
*********
*********
.*.***.*.
*********
.*.***.*.

复制一开始给出的图形,然后迭代复制。


完整代码:

/*30ms,200KB*/

#include<cstdio>

char pix[3][3];
char expix[2][243][243];

int main()
{
	freopen("input.txt", "r", stdin);
	freopen("output.txt", "w", stdout);
	int n, k;
	bool change = false;///一定要初始化!!
	scanf("%d%d", &n, &k);
	int exn = n;
	getchar();
	for (int i = 0; i < n; ++i)
	{
		for (int j = 0; j < n; ++j)
		{
			scanf("%c", &pix[i][j]);
			expix[0][i][j] = pix[i][j];
			expix[1][i][j] = pix[i][j];
		}
		getchar();
	}
	///
	while (--k)
	{
		change = !change;
		for (int i = 0; i < n; ++i)
			for (int j = 0; j < n; ++j)  ///按最初的n*n复制形状
				if (pix[i][j] == '.')
					for (int ii = i * exn; ii < (i + 1)*exn; ++ii)
						for (int jj = j * exn; jj < (j + 1)*exn; ++jj)
							expix[change][ii][jj] = expix[!change][ii - i * exn][jj - j * exn];
				else
					for (int ii = i * exn; ii < (i + 1)*exn ; ++ii)
						for (int jj = j * exn; jj < (j + 1)*exn ; ++jj)
							expix[change][ii][jj] = '*';
		exn *= n;
	}
	for (int i = 0; i < exn; ++i)
	{
		for (int j = 0; j < exn; ++j)
			printf("%c", expix[change][i][j]);
		printf("\n");
	}
	return 0;
}




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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值