四分树

我们可以用四分树来表示一个黑白图像,以根结点表示整幅图像,然后将行列各两等分,从左到右以4各子节点表示。F表示黑色,E表示白色。

代码如下:

 1 #include<cstdio>
 2 #include<cstring>
 3
 4 const int len = 32;
 5 const int maxn = 1024 + 10;
 6 char s[maxn];
 7 int buf[len][len], cnt;
 8
 9 void draw(const char* s, int& p, int r, int c, int w) {
10     char ch = s[p++];
11     if (ch == ‘p‘) {
12         draw(s, p, r, c + w / 2, w / 2);
13         draw(s, p, r, c, w / 2);
14         draw(s, p, r + w / 2, c, w / 2);
15         draw(s, p, r + w / 2, c + w / 2, w / 2);
16     }
17     else if (ch == ‘f‘) {
18         for (int i = r; i < r + w; i++)
19             for (int j = c; j < c + w; j++)
20                 if (buf[i][j] == 0) {
21                     buf[i][j] = 1; cnt++;
22                 }
23     }
24 }
25
26     int main() {
27         int T;
28         scanf_s("%d", &T);
29         while (T--) {
30             memset(buf, 0, sizeof(buf));
31             cnt = 0;
32             for (int i = 0; i < 2; i++) {
33                 scanf_s("%s", s);
34                 int p = 0;
35                 draw(s, p, 0, 0, len);
36             }
37             printf("There are %d black pixels .\n", cnt);
38         }
39         return 0;
40     }
时间: 2024-08-30 00:00:48

四分树的相关文章

UVa 297 Quadtrees(四分树)

题意  可以用一个四分图表示一32*32的黑白图像   求两个四分树对应图像相加所得图形黑色部分有多少像素 直接用一个32*32的矩阵表示图  黑色为非0白色为0  递归建图   最后有多少个非零就是答案了 #include<cstdio> #include<cstring> using namespace std; const int L = 32, N = 1050; char s[N]; int ans[L][L], cnt; void draw(char *s, int &

UVA - 297 Quadtrees (四分树)

题意:求两棵四分树合并之后黑色像素的个数. 分析:边建树边统计. #include<cstdio> #include<cstring> #include<cstdlib> #include<cctype> #include<cmath> #include<iostream> #include<sstream> #include<iterator> #include<algorithm> #inclu

搜索(四分树):BZOJ 4513 [SDOI2016 Round1] 储能表

4513: [Sdoi2016]储能表 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 395  Solved: 213[Submit][Status][Discuss] Description 有一个 n 行 m 列的表格,行从 0 到 n−1 编号,列从 0 到 m−1 编号.每个格子都储存着能量.最初,第 i 行第 j 列的格子储存着 (i xor j) 点能量.所以,整个表格储存的总能量是, 随着时间的推移,格子中的能量会渐渐减少.一个时间

UVa 806 四分树

题意: 分析: 类似UVa 297, 模拟四分树四分的过程, 就是记录一个左上角, 记录宽度wideth, 然后每次w/2这样递归下去. 注意全黑是输出0, 不是输出1234. 1 #include <bits/stdc++.h> 2 using namespace std; 3 // 1 2 4 // 3 4 5 const int base5[8] = {1,5,25,125,625,3125,15625,78125}; 6 int n; 7 string G[70]; 8 vector&

UVa 297.Quadtrees【非二叉树之四分树】【7月31】

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 imag

Uva 297 四分树

题意: 有一个大小为32*32的图像, 它可以描述为一颗四分树, 如下图 注意描述顺序为 2 1 3 4 给出两棵四分树的先序遍历, 求两者合并后, 黑色像素的个数. 分析: 因为本题给的树是一颗完全的树, 所以只需要给出先序遍历, 就能确定整棵树. 我们可以建一个32*32的数组模拟涂色的过程, 是一个锻炼递归的好题目, 递归的代码通常也可以写的很简便. 每次确定一个左上角坐标(r,c), 和长度len,就可以把一个矩形区域填充. 最后数一下填充多少个即可. #include <bits/st

四分树(Quadtrees)

[本博文非博主原创,思路与题目均摘自 刘汝佳<算法竞赛与入门经典(第2版)>] 四分树Quadtrees 一幅图有1024个点, 可以对图平均分成4块, 并且子图也可以再往下分, 直到一个子图表示一个点. f表示这块子图填满, p表示它还有4个子图, e表示没有子图(当然啦, 它也没有填满). 给定两个字符串(其实就是两幅图, 两棵树), 求把两图合并后的图的黑点数. Example Input 3 ppeeefpffeefe pefepeefe peeef peefe peeef peepe

UVA806-Spatial Structures(四分树)

Problem UVA806-Spatial Structures Accept:329  Submit:2778 Time Limit: 3000 mSec Problem Description  Input The input contains one or more images. Each image is square, and the data for an image starts with an integer n, where |n| is the length of a s

四分树 (Quadtrees UVA - 297)

题目描述: 原题:https://vjudge.net/problem/UVA-297 题目思路: 1.依旧是一波DFS建树 //矩阵实现 2.建树过程用1.0来填充表示像素 1 #include <iostream> 2 #include <cstring> 3 using namespace std; 4 5 const int maxn = 1024 + 5; 6 const int len = 32 ; 7 int tree[len][len],pcount; 8 char