现在的位置: 首页 > 综合 > 正文

HDOJ 1033 Edge解题报告

2013年09月01日 ⁄ 综合 ⁄ 共 3185字 ⁄ 字号 评论关闭
Problem Description
For products that are wrapped in small packings it is necessary that the sheet of paper containing the directions for use is folded until its size becomes small enough. We assume that a sheet of paper is rectangular and only folded
along lines parallel to its initially shorter edge. The act of folding along such a line, however, can be performed in two directions: either the surface on the top of the sheet is brought together, or the surface on its bottom. In both cases the two parts
of the rectangle that are separated by the folding line are laid together neatly and we ignore any differences in thickness of the resulting folded sheet.

After several such folding steps have been performed we may unfold the sheet again and take a look at its longer edge holding the sheet so that it appears as a one-dimensional curve, actually a concatenation of line segments. If we move along this curve in
a fixed direction we can classify every place where the sheet was folded as either type A meaning a clockwise turn or type V meaning a counter-clockwise turn. Given such a sequence of classifications, produce a drawing of the longer edge of the sheet assuming
90 degree turns at equidistant places.
 

 

Input
The input contains several test cases, each on a separate line. Each line contains a nonempty string of characters A and V describing the longer edge of the sheet. You may assume that the length of the string is less than 200. The
input file terminates immediately after the last test case.
 

 

Output
For each test case generate a PostScript drawing of the edge with commands placed on separate lines. Start every drawing at the coordinates (300, 420) with the command "300 420 moveto". The first turn occurs at (310, 420) using the
command "310 420 lineto". Continue with clockwise or counter-clockwise turns according to the input string, using a sequence of "x y lineto" commands with the appropriate coordinates. The turning points are separated at a distance of 10 units. Do not forget
the end point of the edge and finish each test case by the commands stroke and showpage.
 
鉴于题目如此晦涩,Andy翻译了一下如下:
 
问题描述:
      对于放入小的包裹的产品来说,将使用说明(sheet)折叠到合适大小是很有必要的。我们假定sheet是矩形的,并且只沿着平行于新形成的较短的边的线进行折叠。但是沿着这条线折叠的做法,有两个方向可以完成:可以是sheet的上表面折叠到一起,或者是sheet的下表面折叠到一起。这两种方式中,被折痕分割的矩形的两部分会恰好铺放在一起。我们忽略纸张的厚度。等完成几步折叠后,我们可以打开sheet查看形成的长边(即折痕),结果呈现出的实际上是一系列连续的线段,我们也按一定的方向沿着曲线(折痕连起来的折线)可以把每处折痕分为顺时针(用A表示)、逆时针(用V表示)两类。根据给定的这样分类的序列,画出sheet的长边(折痕)的图像,假设在等距离的地方折角为90°。
 
输入:
    输入包含几例测试数据,每例测试数据单独占一行。每行包含不为空的描述sheet的长边的字符A和V组成的字符串。你可以假定字符串少于200个字符。最后一例测试完成后立即结束
 
输出:
   每例产生一个PostScript,绘画edge的命令行占单独一行。每例绘画使用命令"300 420 moveto"在点(300,420)开始 ,第一个转折使用命令"310 420 lineto"发生在折点(310, 420)。随后按照输入的字符串顺时针或逆时针的绘画,使用命令 "x y lineto"在合适的点。折点以10个单位划分。完成最后一点并且以命令"stroke"和"showpage"结束。
总结与经验:
                1、题目用英语描述晦涩难懂成为解本题最大的障碍,其实题目并不难
                2、解法中使用flag作标号,只要设置在同一点顺逆时针选择为同一标号,就能完成顺逆时针之间的跳转。又无论顺逆时针,都只有四个状态,所以用四个状态,能够完成四个转折的跳转。
新颖点:巧妙的标号
Andy编辑于  2010-08-23    19:43:18

抱歉!评论已关闭.