1269. Paper Folding

单点时限: 2.0 sec

内存限制: 256 MB

If a large sheet of paper is folded in half, then in half again, etc, with all the folds parallel, then opened up flat, there are a series of parallel creases, some pointing up and some down, dividing the paper into fractions of the original length. If the paper is only opened half-way'' up, so every crease forms a 90 degree angle, then (viewed end-on) it forms adragon curve’‘. For example, if four successive folds are made, then the following curve is seen (note that it does not cross itself, but two corners touch):

Write a program to draw the curve which appears after N folds. The exact specification of the curve is as follows:

The paper starts flat, with the “start edge” on the left, looking at it from above.

The right half is folded over so it lies on top of the left half, then the right half of the new double sheet is folded on top of the left, to form a 4-thick sheet, and so on, for N folds.

Then every fold is opened from a 180 degree bend to a 90 degree bend.

Finally the bottom edge of the paper is viewed end-on to see the dragon curve.

From this view, the only unchanged part of the original paper is the piece containing the “start edge”, and this piece will be horizontal, with the “start edge” on the left. This uniquely defines the curve. In the above picture, the “start edge” is the left end of the rightmost bottom horizontal piece (marked “s”). Horizontal pieces are to be displayed with the underscore character “_”, and vertical pieces with the “|” character.

输入格式

Input will consist of a series of lines, each with a single number N ( 1<=N<=13 ). The end of the input will be marked by a line containing a zero.

输出格式

Output will consist of a series of dragon curves, one for each value of N in the input. Your picture must be shifted as far left, and as high as possible. Note that for large N, the picture will be greater than 80 characters wide, so it will look messy on the screen. The pattern for each different number of folds is terminated by a line containing a single “^”.

2 人解决,3 人已尝试。

2 份提交通过,共有 6 份提交。

8.8 EMB 奖励。

创建: 16 年,9 月前.

修改: 6 年,8 月前.

最后提交: 9 月,3 周前.

来源: UVa

题目标签