| 设为首页 加入收藏 |
当前位置: |
| TOP | |||||||||||
|
UVA 297 Quadtrees(四叉树建树、合并与遍历)(一)
A quadtree is a representation format used to encode images. The fundamental idea behind the quadtree is that any image can be split into four quadrants. Each quadrant may again be split in four sub quadrants, etc. In the quadtree, the image is represented by a parent node, while the four quadrants are represented by four child nodes, in a predetermined order. Of course, if the whole image is a single color, it can be represented by a quadtree consisting of a single node. In general, a quadrant needs only to be subdivided if it consists of pixels of different colors. As a result, the quadtree need not be of uniform depth. A modern computer artist works with black-and-white images of This particular artist believes in what he calls the preferred fullness: for an image to be interesting (i.e. to sell for big bucks) the most important property is the number of filled (black) pixels in the image. So, before adding two images together, he would like to know how many pixels will be black in the resulting image. Your job is to write a program that, given the quadtree representation of two images, calculates the number of pixels that are black in the image, which is the result of adding the two images together. In the figure, the first example is shown (from top to bottom) as image, quadtree, pre-order string (defined below) and number of pixels. The quadrant numbering is shown at the top of the figure.
Input SpecificationThe first line of input specifies the number of test cases (N) your program has to process.<??http://www.2cto.com/kf/ware/vc/" target="_blank" class="keylink">vcD4KPHA+VGhlIGlucHV0IGZvciBlYWNoIHRlc3QgY2FzZSBpcyB0d28gc3RyaW5ncywgZWFjaCBzdHJpbmcgb24gaXRzIG93biBsaW5lLiBUaGUgc3RyaW5nIGlzIHRoZSBwcmUtb3JkZXIgcmVwcmVzZW50YXRpb24gb2YgYSBxdWFkdHJlZSwgaW4gd2hpY2ggdGhlIGxldHRlciA="p' indicates a parent node, the letter 'f' (full) a black quadrant and the letter 'e' (empty) a white quadrant. It is guaranteed that each string represents a valid quadtree, while the depth of the tree is not more than 5 (because each pixel has only one color). Output SpecificationFor each test case, print on one line the text 'There are X black pixels.', where X is the number of black pixels in the resulting image. Example Input3 ppeeefpffeefe pefepeefe peeef peefe peeef peepefefe Example OutputThere are 640 black pixels. There are 512 black pixels. There are 384 black pixels. 题意:有一个用四叉树表示的图,该图用P,E,F来表示,P表示父节点,F表示黑色,E表示白色,整个图的大小为1024。每一个子图都能分成四个部分(当颜色不同的时候才需要划分),现在要把两个图合并成一个图,求合并后图有多少黑色像素。
#include
|
|||||||||||
| 评论 |
|
|