hdu 3648 Median Filter (树状数组)
Median Filter
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1092 Accepted Submission(s): 269
Given a black and white image of n by n pixels, the algorithm works as follow:
For each pixel p at the i‐th row and the j‐th column (1+ r <= i, j <= n – r), its gray level g[i,j] is replace by the median of gray levels of pixels in the (2r+1) by (2r+1) square centered at p. The square is called the filtering window and r is its radius.
Considering the above example, the gray level of the pixel at center will be changed from 150 to 124, which is the median of a filtering window of radius 1.
Note that the algorithm won’t be applied on the pixels near the boundary, for the filtering window lies outside the image. So you are actually asked to output the filtered sub-image which contains the pixels from (r+1, r+1) to (n-r, n-r).
For each test case:
(a) The first line contains two integers, n and r, meaning that the size of image is n * n (3 <= n <= 500) and the radius of filtering window is r ( 3 <= 2r + 1 <= n).
(b) The following n lines contains the n by n gray level matrix presenting the image
(c) The gray level ranges from 0 to 1000000 The input ends by double 0s.
The definition of “median”: One type of average, found by arranging the values in order and then selecting the one in the middle.
If the total number of values in the sample is even, then the median is the mean of the two middle numbers.
The median is a useful number in cases where the distribution has very large extreme values which would otherwise skew the data.
题意:
中值滤波,求在n*n的矩阵中,内(n-2*r)*(n-2*r)的中值滤波后的子矩阵。
中值滤波的方式就是对于每一个可以取到的以(i,j)为矩阵中心的(2*r+1)*(2*r+1)的子矩阵,将子矩阵中所有数排序后的中位数作为新值,新值不影响后面的值。
做法:
树状数组
这是一题比较有趣的题吧,一开始暴力试一下是TLE的,明显算法复杂都会很大。子矩阵的处理如果用到排序应该都会超时,因此看到了一个很高效的算法,就是利用树状数组和一个在树状树组中求第k大的数的函数,后来在采用S行遍历,代码因此有点长,还要注意一下输出。
- //1781MS 6196K 2399 B G++
- #include<stdio.h>
- #include<string.h>
- #define N 505
- int g[N][N];
- int ans[N][N];
- int c[<<];
- int n,r,M;
- inline int lowbit(int k)
- {
- return k&(-k);
- }
- int getsum(int k)
- {
- int s=;
- for(;k>;k-=lowbit(k))
- s+=c[k];
- return s;
- }
- void insert(int k,int detal)
- {
- for(;k<=M;k+=lowbit(k))
- c[k]+=detal;
- }
- int find_kth(int k) //树状数组找第k大的数
- {
- int sum=,pos=;
- for(int i=;i>=;i--){
- pos+=(<<i);
- if(pos>M || sum+c[pos]>=k)
- pos-=(<<i);
- else sum+=c[pos];
- }
- return pos+;
- }
- void solve()
- {
- int R=*r+;
- int k=R*R/+;
- for(int i=;i<=R;i++)
- for(int j=;j<=R;j++)
- insert(g[i][j],);
- //for(int i=1;i<=2*(k-1);i++) printf("*%d\n",c[i]);
- for(int i=r+;i<=n-r;i++){
- if((i-r)&){ //奇数行,向右遍历
- if(i!=r+){
- for(int j=;j<=R;j++){
- insert(g[i-r-][j],-);
- insert(g[i+r][j],);
- }
- }
- ans[i][r+]=find_kth(k);
- for(int j=r+;j<=n-r;j++){
- for(int ii=i-r;ii<=i+r;ii++){
- insert(g[ii][j-r-],-);
- insert(g[ii][j+r],);
- }
- ans[i][j]=find_kth(k);
- }
- }else{ //偶数行,向左遍历
- for(int j=n;j>=n-R+;j--){
- insert(g[i-r-][j],-);
- insert(g[i+r][j],);
- }
- ans[i][n-r]=find_kth(k);
- for(int j=n-r-;j>=r+;j--){
- for(int ii=i-r;ii<=i+r;ii++){
- insert(g[ii][j+r+],-);
- insert(g[ii][j-r],);
- }
- ans[i][j]=find_kth(k);
- }
- }
- }
- }
- int main(void)
- {
- while(scanf("%d%d",&n,&r),n+r)
- {
- M=;
- memset(c,,sizeof(c));
- for(int i=;i<=n;i++)
- for(int j=;j<=n;j++){
- scanf("%d",&g[i][j]);
- g[i][j]++;
- if(g[i][j]>M) M=g[i][j];
- }
- solve();
- for(int i=r+;i<=n-r;i++)
- for(int j=r+;j<=n-r;j++)
- printf(j==n-r?"%d \n":"%d ",ans[i][j]-);
- }
- return ;
- }
- /*
- 3 1
- 1 9 6
- 4 5 2
- 3 7 8
- 5 1
- 0 0 1 1 0
- 1 0 1 0 1
- 0 0 1 1 1
- 1 1 1 0 1
- 1 0 0 0 1
- */
hdu 3648 Median Filter (树状数组)的更多相关文章
- HDU 3333 | Codeforces 703D 树状数组、离散化
HDU 3333:http://acm.hdu.edu.cn/showproblem.php?pid=3333 这两个题是类似的,都是离线处理查询,对每次查询的区间的右端点进行排序.这里我们需要离散化 ...
- HDU 3333 - Turing Tree (树状数组+离线处理+哈希+贪心)
题意:给一个数组,每次查询输出区间内不重复数字的和. 这是3xian教主的题. 用前缀和的思想可以轻易求得区间的和,但是对于重复数字这点很难处理.在线很难下手,考虑离线处理. 将所有查询区间从右端点由 ...
- HDU 3333 Turing Tree (树状数组)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3333 题意就是询问区间不同数字的和. 比较经典的树状数组应用. //#pragma comment(l ...
- HDU 4325 Flowers(树状数组+离散化)
http://acm.hdu.edu.cn/showproblem.php?pid=4325 题意:给出n个区间和m个询问,每个询问为一个x,问有多少个区间包含了x. 思路: 因为数据量比较多,所以需 ...
- hdu 5775 Bubble Sort 树状数组
Bubble Sort 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5775 Description P is a permutation of t ...
- HDU - 1541 Stars 【树状数组】
题目链接 http://acm.hdu.edu.cn/showproblem.php?pid=1541 题意 求每个等级的星星有多少个 当前这个星星的左下角 有多少个 星星 它的等级就是多少 和它同一 ...
- HDU 3854 Glorious Array(树状数组)
题意:给一些结点,每个结点是黑色或白色,并有一个权值.定义两个结点之间的距离为两个结点之间结点的最小权值当两个结点异色时,否则距离为无穷大.给出两种操作,一种是将某个结点改变颜色,另一个操作是询问当前 ...
- HDU 3874 Necklace (树状数组 | 线段树 的离线处理)
Necklace Time Limit: 15000/5000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total S ...
- HDU 5101 Select --离散化+树状数组
题意:n 组,每组有一些值,求 在不同的两组中每组选一个使值的和大于k的方法数. 解法:n * Cnt[n] <= 1000*100 = 100000, 即最多10^5个人,所以枚举每个值x,求 ...
随机推荐
- centos7-mongodb3.4.6集群的搭建
0.需要环境 安装包:mongodb-linux-x86_64-3.4.6.tgz 安装路径:/usr/mongodb 服务器: 192.168.177.131/132/133 mongos 2000 ...
- mysql 常用函数,基本使用
1:选中排除表1 连接表2 表3 获取选中表1中部分选中表3 的部分 并且设置选中状态select t1.*,if(t2中t3id=t1.id,1,0)as checked from t1 lefet ...
- Source Insight的使用
1. source insight查看函数的上一级调用的位置(函数) --> 鼠标放在函数上,右键 选择 Jump To caller,就可以看到有哪些函数调用它了:
- Go web表单
package main import ( "fmt" "html/template" "log" "net/http" ...
- BootCDNApi使用记录
通过API获取BootCDN所加速的所有前端开源库的基本信息和文件列表 API 将一下API链接中的.min字样去掉后,获取到的JSON格式的返回信息是经过良好的格式化的,便于查看. 所有开源库简要信 ...
- REPLACE(替换字段内容)
语法: REPLACE <str1> WITH <str2> INTO <c> [LENGTH <l> ]. ABAP/4 搜索字段 <c> ...
- Fragment保持状态切换
在使用Activity管理多个Fragment时,每次切换Fragment使用的是replace,结果导致出现xxx is not currently in the FragmentManager异常 ...
- js获取浏览器内容宽高(小计)
<SCRIPT LANGUAGE="JavaScript">var s = "";s += "\r\n网页可见区域宽:"+ d ...
- Android开发——View绘制过程源码解析(二)
0. 前言 View的绘制流程从ViewRoot的performTraversals开始,经过measure,layout,draw三个流程,之后就可以在屏幕上看到View了.上一篇已经介绍了Vi ...
- ReentrantLock类的hasQueuedPredecessors方法和head节点的含义
部分启发来源自文章:Java并发编程--Lock PART 1 1.如果h==t成立,h和t均为null或是同一个具体的节点,无后继节点,返回false.2.如果h!=t成立,head.next是否为 ...