题目大意:边缘检测
IONU卫星成像公司,公司记录和储存非常大的图片使用行程编码,你需要编写一个程序读取被压缩的图像,发现图像的边缘,描述如下,并且输出另一个发现的边缘压缩图像。
一个简单的边缘检测算法设置输出像素的值是它最大的差的绝对值与周围像素的,观看下面的图像

图像包含2-10^9个像素点,所有的像素值都在(0-255)之间,不过为了方便存储,使用相同的数字压缩到一起方式,比如上面图像第一行有4个15可以写成15 4,计算出来最终的图像,也是用压缩的方式写出来
分析:很明显不能够把图像还原,太占内存了,也没有办法计算,再想想吧........
发现可法通过判断上下是否属于同一集合来做,但是首位需要单独考虑,试试吧
8个小时,真心很麻烦啊,不过对了,嘎嘎,好爽
#include<iostream>
#include<queue>
#include<cmath>
#include<algorithm>
#include<string.h>
using namespace std; #define maxn 1005
#define INF 0xfffffff int dir[9][2] = {
    {-1,-1},{-1, 0},{-1, 1},
    { 0,-1},{ 0, 0},{ 0, 1},
    { 1,-1},{ 1, 0},{ 1, 1}
}; struct Set
{
    int L, R;
    int vl, cnt;
}a[maxn]; struct node
{
    int vl, cnt;
}; struct SQLine
{
    int Up, Down;
}; int FindSet(int L, int R, int e);           //查找e在第几个区间
int MaxAbs(int k, int wide, int Len, int n);                //与四周相比最大的绝对值
int FindLocation(int L, int R, int wide, int l, int r);   //查找与e相等的最右边的位置
node Fill(int k, int wide, int cnt, int Len, int n);        //填充
int OK(int x, int y, int wide, int Len);    //判断xy坐标是否合法 int main()
{
    int wide;     while(cin >> wide)
    {
        int n=1;
        node s;
        queue<node> Q;         if(wide == 0)
        {
            cout << "0" <<endl;
            continue;
        }
        a[0].L = -INF, a[0].R = -1;
        while(cin >> a[n].vl >> a[n].cnt, a[n].vl+a[n].cnt)
        {
            a[n].L = a[n-1].R+1;
            a[n].R = a[n-1].R+a[n].cnt;
            n++;
        }
        a[n].L = a[n-1].R+1, a[n].R=INF;
        int k=0, End = a[n-1].R;
        while(k <= End)
        {
            int indexK = FindSet(0, n, k);             int Len = FindLocation(k, a[indexK].R, wide, 0, n);             Q.push(Fill(k++, wide, 1, End/wide+1, n));             if(Len - k == 0)
                Q.push(Fill(k++, wide, 1, End/wide+1, n));
            else if(Len - k > 0)
            {
                Q.push(Fill(k, wide, Len-k, End/wide+1, n));
                Q.push(Fill(Len, wide, 1, End/wide+1, n));
                k = Len+1;
            }
        }
        s.cnt = s.vl = 0;
        Q.push(s);
        s = Q.front();
        s.cnt = 0;         cout << wide <<endl;         while(Q.size())
        {
            node q = Q.front();Q.pop();
            if(s.vl == q.vl)
                s.cnt += q.cnt;             if(s.vl != q.vl || Q.size() == 0)
            {
                cout<< s.vl << ' ' << s.cnt <<endl;
                s = q;
            }             if(Q.size() == 0)
                cout << "0 0" <<endl;
        }
    }     return 0;
} int FindSet(int L, int R, int e)           //查找e在第几个区间
{
    while(L<=R)
    {
        int Mid = (L+R) / 2;         if(e >= a[Mid].L && e <= a[Mid].R)
            return Mid;
        else if(e < a[Mid].L)
            R = Mid-1;
        else
            L = Mid+1;
    }     return 0;
}
int MaxAbs(int k, int wide, int Len, int n)                //与四周相比最大的绝对值
{
    int i, x = k/wide, y=k%wide;
    int MaxNum=0;
    int t = FindSet(0, n, k);     for(i=0; i<9; i++)
    {
        int nx = x+dir[i][0];
        int ny = y+dir[i][1];         if(OK(nx, ny, wide, Len))
        {
            int j = nx * wide + ny;
            j = FindSet(0, n, j);
            MaxNum = max(MaxNum, abs(a[t].vl - a[j].vl));
        }
    }     return MaxNum;
}
int OK(int x, int y, int wide, int Len)   //判断xy坐标是否合法
{
    if(x>=0&&x<Len && y>=0&&y<wide)
        return 1;
    return 0;
}
int FindLocation(int L, int R, int wide, int l, int r)   //查找与e相等的最右边的位置
{
    int Mid, up=FindSet(l, r, L-wide), down=FindSet(l, r, L+wide);
    int ans = L;     while(L <= R)
    {
        Mid = (L+R) / 2;         int i=FindSet(l, r, Mid-wide), j=FindSet(l, r, Mid+wide);         if(up == i && down == j)
            L = Mid+1, ans=Mid;
        else
            R = Mid-1;
    }     return ans;
}
node Fill(int k, int wide, int cnt, int Len, int n)        //填充
{
    node s;     s.vl = MaxAbs(k, wide, Len, n);
    s.cnt = cnt;     return s;

}

poj1009的更多相关文章

  1. 【poj1009】 Edge Detection

    http://poj.org/problem?id=1009 (题目链接) 不得不说,poj上的水题还是质量非常高的= =,竟然让本大爷写了一下午. 转自:http://blog.sina.com.c ...

  2. POJ1009 Edge Detection

    题目来源:http://poj.org/problem?id=1009 题目大意: 某图像公司用run length encoding(RLE)的方式记录和存储了大量的图像.程序的目标是读入压缩后的图 ...

  3. 北大poj- 1009

    Edge Detection Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 22835   Accepted: 5398 D ...

  4. poj 算法 分类

    转载请注明出处:優YoU http://blog.csdn.net/lyy289065406/article/details/6642573 最近AC题:2528   更新时间:2011.09.22  ...

  5. POJ 水题(刷题)进阶

    转载请注明出处:優YoU http://blog.csdn.net/lyy289065406/article/details/6642573 部分解题报告添加新内容,除了原有的"大致题意&q ...

  6. 北大ACM试题分类+部分解题报告链接

    转载请注明出处:優YoU http://blog.csdn.net/lyy289065406/article/details/6642573 部分解题报告添加新内容,除了原有的"大致题意&q ...

  7. 北大ACM - POJ试题分类(转自EXP)

    北大ACM - POJ试题分类 -- By EXP 2017-12-03 转载请注明出处: by EXP http://exp-blog.com/2018/06/28/pid-38/ 相关推荐文: 旧 ...

  8. 北大ACM - POJ试题分类

    1.入门水题 可用于练手与增强自信 POJ-1003POJ-1004 POJ-1005 POJ-1207 POJ-3299 POJ-2159 POJ-1083POJ-3094 2.初级 2.1. 基本 ...

  9. poj1000-1009小结

    poj1000-1009小结 poj1000-1009小结 poj1000 AB poj1001 Exponentiation poj1002 poj1003 poj1004 Financial Ma ...

随机推荐

  1. tomcat发布项目时,空文件夹未发布成功

    问题背景: 项目发布到服务器时,缺少文件夹,到时向此文件夹写数据时发生错误. 后来经查,缺少这个文件夹,项目部署发布时,并不会把空文件夹发布上去 解决: 1.在空文件中加入,一个文件.就可以发布成功 ...

  2. linux 命令学习(4)

    Linux中常用的关机和重新启动命令有shutdown.halt.reboot以及init,它们都可以达到关机和重新启动的目的,但是每个命令的内部工作过程是不同的,下面将逐一进行介绍. 1. shut ...

  3. C# 封装

    封装就是吧里面实现的细节包起来,这样很复杂的逻辑经过包装之后给别人使用就很方便,别人不需要了解里面是如何实现的,只要传入所需要的参数就可以得到想要的结果.其实这和黑盒测试差不多

  4. C# WinFrom 编写正则表达式验证类

    public class ValidationRegex { /// <summary> /// 正则表达式字符串 /// </summary> public static s ...

  5. yii2源码学习笔记(六)

    Behvaior类,Behavior类是所有事件类的基类: 目录yii2\base\Behavior.php <?php /** * @link http://www.yiiframework. ...

  6. Nginx fastcgi_param解释

    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;#脚本文件请求的路径 fastcgi_param QUERY_STRI ...

  7. CreateJS第1章 EaselJS基础 (画图)

    这章学学EaselJS的基本常用API首先下载createjs库,在项目文件里新建一个js文件夹放里面http://code.createjs.com/ 各种形状 var sp = new creat ...

  8. Linux 环境下自动化测试工具,Redhat dogtail的安装

    dogtail基于Accessibility(a11y)的GUI图形界面测试工具和自动化框架可以与linux桌面应用程序进行交互操作. dogtail是用Python语言写的.dogtail的测试脚本 ...

  9. [R] /usr/share/doc/apache2/README.Debian.gz

    Contents======== Apache2 Configuration under Debian GNU/Linux Files and Directories in '/etc/apache2 ...

  10. STM32学习笔记——定时器中断(向原子哥学习)

    定时器中断 STM32 的定时器功能十分强大,有 TIME1 和 TIME8 等高级定时器,也有 TIME2~TIME5 等通用定时器,还有 TIME6 和TIME7 等基本定时器.在本章中,我们将利 ...