poj1009

#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的更多相关文章
- 【poj1009】 Edge Detection
http://poj.org/problem?id=1009 (题目链接) 不得不说,poj上的水题还是质量非常高的= =,竟然让本大爷写了一下午. 转自:http://blog.sina.com.c ...
- POJ1009 Edge Detection
题目来源:http://poj.org/problem?id=1009 题目大意: 某图像公司用run length encoding(RLE)的方式记录和存储了大量的图像.程序的目标是读入压缩后的图 ...
- 北大poj- 1009
Edge Detection Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 22835 Accepted: 5398 D ...
- poj 算法 分类
转载请注明出处:優YoU http://blog.csdn.net/lyy289065406/article/details/6642573 最近AC题:2528 更新时间:2011.09.22 ...
- POJ 水题(刷题)进阶
转载请注明出处:優YoU http://blog.csdn.net/lyy289065406/article/details/6642573 部分解题报告添加新内容,除了原有的"大致题意&q ...
- 北大ACM试题分类+部分解题报告链接
转载请注明出处:優YoU http://blog.csdn.net/lyy289065406/article/details/6642573 部分解题报告添加新内容,除了原有的"大致题意&q ...
- 北大ACM - POJ试题分类(转自EXP)
北大ACM - POJ试题分类 -- By EXP 2017-12-03 转载请注明出处: by EXP http://exp-blog.com/2018/06/28/pid-38/ 相关推荐文: 旧 ...
- 北大ACM - POJ试题分类
1.入门水题 可用于练手与增强自信 POJ-1003POJ-1004 POJ-1005 POJ-1207 POJ-3299 POJ-2159 POJ-1083POJ-3094 2.初级 2.1. 基本 ...
- poj1000-1009小结
poj1000-1009小结 poj1000-1009小结 poj1000 AB poj1001 Exponentiation poj1002 poj1003 poj1004 Financial Ma ...
随机推荐
- iOS LaunchScreen设置启动图片,启动页停留时间
[新建的iOS 项目启动画面默认为LaunchScreen.xib] 如果想实现一张图片作为启动页,如下图
- (JAVA)从零开始之--打印流PrintStream记录日志文件
这里的记录日志是利用打印流来实现的. 文本信息中的内容为String类型.而像文件中写入数据,我们经常用到的还有文件输出流对象FileOutputStream. File file = new Fil ...
- cas sso单点登录系列8_抛弃Https让Cas以Http协议提供单点登录服务
转:http://blog.csdn.net/ycyk_168/article/details/18668951 本文环境: 1.apache-tomcat-7.0.50-windows-x86 2. ...
- 从XML文件中获取格式化的文本信息
在FMW的运维过程中,时常需要将中间传输的XML信息转换为excel格式化的问题提交给关联系统人员,现总结三种格式化问题提供方式 一.使用Excel转换 因为从系统中取到的xml文档为中间信息文档,需 ...
- Direct 2D实现界面库 (1)
大学时尝试过很多次写一个UI库, 初次使用 GDI 绘图, 当时水平很低, GDI功能太弱, 以失败而告终. 之后使用 GDI+ 绘图, 当时水平依旧很低, GDI功能很强, 但效率实在太慢, 以失败 ...
- SGU 170.Particles
Solution: 这其实是道很简单的题. 只要从一端开始,以‘+’或‘-’,任意一种开始找,找到与目标串最近的相同字符的距离就是需要交换的次数 ...
- Overloads和Overrides在元属性继承上的特性
元属性继承可以使用IsDefined函数进行判断,先写出结论 如果使用Overrides,则元属性可以继承,除非在使用IsDefined时明确不进行继承判断,如 pFunction.IsDefined ...
- ubuntu 实现界面切换
1.按ALT+CTRL+F1切换到字符界面(Linux实体机) 如果是VMware虚拟机安装的Linux系统,则切换到字符界面的时候需要以下操作 按下ALT+CTRL+SPACE(空格),ALT+CT ...
- 手机端的META你有多了解?
我们先来简单了解下meta标签:meta指元素可提供有关页面的元信息(meta-information),比如针对搜索引擎和更新频度的描述和关键词. 标签位于文档的头部,不包含任何内容. 标签的属性定 ...
- linux下shapely的安装
错误 1.“from shapely.geometry import Point, LineString, Polygon”时报错: OSError: Could not find library g ...