zoukankan      html  css  js  c++  java
  • uva 297 quadtrees——yhx

    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 tex2html_wrap_inline34 units, for a total of 1024 pixels per image. One of the operations he performs is adding two images together, to form a new image. In the resulting image a pixel is black if it was black in at least one of the component images, otherwise it is white.

    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 Specification

    The first line of input specifies the number of test cases (N) your program has to process.

    The input for each test case is two strings, each string on its own line. The string is the pre-order representation of a quadtree, in which the letter '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 Specification

    For 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.

     1 #include<cstdio>
     2 #include<cstring>
     3 int map[40][40];
     4 void draw(int x,int y,int l)
     5 {
     6     int i,j,k,p,q;
     7     char c;
     8     scanf("%c",&c);
     9     if (c=='p')
    10     {
    11         draw(x,y+l/2,l/2);  //四分
    12         draw(x,y,l/2);
    13         draw(x+l/2,y,l/2);
    14         draw(x+l/2,y+l/2,l/2);
    15     }
    16     if (c=='f')
    17       for (i=x;i<=x+l-1;i++)    //注意减1
    18         for (j=y;j<=y+l-1;j++)
    19           map[i][j]=1;
    20 }
    21 int main()
    22 {
    23     int i,j,k,n,ans;
    24     char c;
    25     scanf("%d",&n);
    26     for (i=1;i<=n;i++)
    27     {
    28         scanf("%*c");
    29         memset(map,0,sizeof(map));  //清空
    30         draw(1,1,32);
    31         scanf("%*c");     //读入回车符
    32         draw(1,1,32);
    33         ans=0;
    34         for (j=1;j<=32;j++)
    35           for (k=1;k<=32;k++)
    36             if (map[j][k]) ans++;
    37         printf("There are %d black pixels.
    ",ans);
    38     }
    39 }

    其实和前两道题差不多,都是递归求树。

  • 相关阅读:
    从一个iOS毛头小子到现在的高级工程师, 我总结了一些经验,先跟大家分享一下一些好的资料
    iOS面试题---Objective_C语言特性:分类、扩展、代理、通知、KVO、KVC、属性
    200道iOS面试题面试题整理,底层、技术亮点公司需要的这里都有
    [iOS 开发] iOS 开发从菜鸟到高手?听听他们怎么说
    2020年面向iOS开发人员的知识点总结(更新中)
    OC项目转Swift指南
    来自老程序员的10条中肯建议
    面对职业瓶颈,iOS 开发人员应该如何突破?
    憨憨程序猿,不要让你的技术被简历埋没了
    总结:实现线程同步的八种方式
  • 原文地址:https://www.cnblogs.com/SBSOI/p/5575046.html
Copyright © 2011-2022 走看看