题目链接:http://codeforces.com/problemset/problem/70/D

本题关键:在log(n)的复杂度内判断点在凸包 或 把点插入凸包

判断:平衡树log(n)内选出点所属于的区域

插入:平衡树log(n)内选出点所属于的区域, 与做一般凸包的时候类似,分别以该点向左右两边进行维护,

一直删除不满足凸包的点,直到所有点满足凸包为止。

水平序:

可以用2个平衡树分别维护上下2个半凸包,具体实现时可以把其中一个半凸包按y轴对称以后,那么2个半凸包的维护就是同一种方法,写2个函数就ok了。

具体平衡树可以用set或map,用STL以后边界处理有点烦,需要注意。

水平序的凸包有一个特点(如按x排序):对于上下凸包(分开来看),x相同的点只有一个。所以用set维护比较麻烦,用map维护相对容易一点。

极角序:

之前给你的3个点一定是插入的,可以选它们的中心点o作为之后的凸包中心,按o进行极角排序。

之后的做法就跟 “本题关键” 的做法一致。

以下给出3份不同的代码:

set代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <set>
using namespace std;
typedef pair<int, int> pii;
typedef long long ll;
typedef set <pii > ::iterator iter;
#define mp make_pair
#define X first
#define Y second
int q, op, x, y;
set <pii > up, down;
const int inf = 1e9;
ll cross(pii o, pii a, pii b) {
return (ll)(a.X-o.X)*(b.Y-o.Y) - (ll)(a.Y-o.Y)*(b.X-o.X);
}
bool inside(set<pii > &st, int x, int y) {
if(!st.size()) return 0;
if(x < st.begin()->X || x > st.rbegin()->X) return 0;
iter c = st.lower_bound(mp(x, -inf));//如果有相同x的点,比较y值即可
if(c != st.end() && c->X == x)
return y >= c->Y; iter r = st.lower_bound(mp(x, y));
iter l = r; l--;
return cross(*l, mp(x, y), *r) <= 0;
}
void add(set<pii > &st, int x, int y)
{
if(inside(st, x, y)) return;
iter c = st.lower_bound(mp(x, -inf));
if(c != st.end() && c->X == x) //如果有相同x的点必须删除
st.erase(c);
st.insert(mp(x, y));
iter cur = st.lower_bound(mp(x, y)), i, j;
for(i = cur, i--, j = i, j--; i != st.begin() && cur != st.begin(); i = j, j--)
if(cross(*cur, *i,*j) >= 0) st.erase(i);
else break;
for(i = cur, i++, j = i, j++; i != st.end() && j != st.end(); i = j, j++)
if(cross(*cur, *i, *j) <= 0) st.erase(i);
else break;
} int main() {
scanf("%d", &q);
while(q--) {
scanf("%d%d%d", &op, &x, &y);
if(op == 1) {
add(up, x, -y);
add(down, x, y);
}
else if(inside(up, x, -y) && inside(down, x, y))
puts("YES");
else puts("NO");
}
return 0;
}

map代码:

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <map>
using namespace std;
#define X first
#define Y second
typedef map<int, int> mii;
typedef map<int, int>::iterator iter;
typedef long long ll;
ll cross(iter o, iter a, iter b) {
return (ll)(a->X-o->X)*(b->Y-o->Y)-(ll)(a->Y-o->Y)*(b->X-o->X);
}
mii up, down;
bool inside(mii &p, int x, int y) {
if(!p.size()) return 0;
if(x < p.begin()->X || x > p.rbegin()->X) return 0;
if(p.count(x)) return y >= p[x];
p[x] = y;
iter cur = p.lower_bound(x), i, j;
i = cur; j = cur; j++; i--;
bool ret = cross(i, cur, j) <= 0;
p.erase(x);
return ret;
}
void add(mii &p, int x, int y) {
if (inside(p, x, y))
return;
p[x] = y;
iter cur = p.lower_bound(x), i, j;
for (i = cur, i--, j = i, j--; i != p.begin() && cur != p.begin();i = j--)
if (cross(cur, i, j) >= 0) p.erase(i);
else break;
for (i = cur, i++, j = i, j++; i != p.end() && j != p.end();i = j++)
if (cross(cur, i, j) <= 0) p.erase(i);
else break;
}
int main() {
int i, j, Q, x, y, op;
scanf("%d", &Q);
while (Q--) {
scanf("%d%d%d", &op, &x, &y);
if (op == 1) {
add(up, x, -y);
add(down, x, y);
} else if (inside(up, x, -y) && inside(down, x, y))
printf("YES\n");
else
printf("NO\n");
}
return 0;
}

极角序代码:

#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <set>
using namespace std;
typedef long long ll;
struct point {
int x, y;
ll d;
double z;
}o, a[5], p;
typedef set <point>:: iterator iter;
bool operator <(const point &a, const point &b) {
return a.z < b.z || (a.z == b.z && a.d < b.d);
} ll cross(point o, point a, point b) {
return (ll)(a.x-o.x)*(b.y-o.y)-(ll)(a.y-o.y)*(b.x-o.x);
}
set <point> st;
iter L(iter x) {
if(x == st.begin()) x = st.end();
x--;
return x;
}
iter R(iter x) {
x++;
if(x == st.end()) x = st.begin();
return x;
} int q, op;
int main() {
scanf("%d", &q);
for(int i = 0; i < 3; i++) {
scanf("%d%d%d", &op, &a[i].x, &a[i].y);
o.x += a[i].x;
o.y += a[i].y;
a[i].x *= 3; a[i].y *= 3;
}
for(int i = 0; i < 3; i++) {
a[i].d = (ll)(a[i].x-o.x)*(a[i].x-o.x)+(ll)(a[i].y-o.y)*(a[i].y-o.y);
a[i].z = atan2(a[i].y-o.y, a[i].x-o.x);
st.insert(a[i]);
}
q -= 3;
while(q--) {
scanf("%d%d%d", &op, &p.x, &p.y);
p.x *= 3; p.y *= 3;
p.z = atan2(p.y-o.y, p.x-o.x);
p.d = (ll)(p.x-o.x)*(p.x-o.x)+(ll)(p.y-o.y)*(p.y-o.y);
iter i = st.lower_bound(p), j;
if(i == st.end()) i = st.begin();
j = L(i);
if(op == 2) {
if(cross(*j,p,*i)<=0) puts("YES");
else puts("NO");
continue;
}
if(cross(*j,p,*i)<=0) continue;
st.insert(p);
iter cur = st.find(p); i = L(cur); j = L(i);
while(cross(*j, *i, *cur) <= 0) {
st.erase(i);
i = j; j = L(j);
} i = R(cur); j = R(i);
while(cross(*j, *i, *cur) >= 0) {
st.erase(i);
i = j; j = R(j);
} }
return 0;
}

[置顶] Codeforces 70D 动态凸包 (极角排序 or 水平序)的更多相关文章

  1. POJ 2007 Scrambled Polygon [凸包 极角排序]

    Scrambled Polygon Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 8636   Accepted: 4105 ...

  2. bzoj 2087: [Poi2010]Sheep【凸包+极角排序+dp】

    首先处理处理出来哪些边能连--能把羊分成两个偶数部分的,实现是在凸包上枚举极点,极角排序,枚举凸包上点对判断两边羊的个数的奇偶即可,设可以连边为v[i][j]=1 然后设f[i][j]为从i到j个凸包 ...

  3. Gym 101986D Making Perimeter of the Convex Hull Shortest(凸包+极角排序)

    首先肯定是构造一个完整的凸包包括所有的点,那么要使得刚好有两个点在外面,满足这个条件的只有三种情况. 1.两个在凸包上但是不连续的两个点. 2.两个在凸包上但是连续的两个点. 3.一个在凸包上,还有一 ...

  4. [置顶] Codeforces Round #198 (Div. 1)(A,B,C,D)

    http://codeforces.com/contest/341 赛后做的虚拟比赛,40分钟出了3题,RP爆发. A计数问题 我们可以对每对分析,分别对每对<a, b>(a走到b)进行统 ...

  5. [置顶] java web 动态服务器

    写了一个java web 动态服务器,主要通过内部类来实现,动态类使用了外部类,采用了 classforname 实例化,动态类的构造方法不能带参数, 效果都出来了,分享给有需要的 朋友.判断做的不够 ...

  6. [置顶] Codeforces Round #197 (Div. 2)(完全)

    http://codeforces.com/contest/339/ 这场正是水题大放送,在家晚上限制,赛后做了虚拟比赛 A,B 乱搞水题 C 我是贪心过的,枚举一下第一个拿的,然后选使差值最小的那个 ...

  7. [置顶] 原创鼠标拖动实现DIV排序

    先上效果图: 对比传统的排序,这是一个很不错的尝试,希望对大家有启发. 大家可以参考我的上一篇博文:http://blog.csdn.net/littlebo01/article/details/12 ...

  8. [置顶] Codeforces Round #190 (Div. 2)(完全)

    好久没有写博客了,一直找不到有意义的题可以写,这次也不算多么有意义,只是今天是比较空的一天,趁这个时候写一写. A. B. 有一点贪心,先把每个拿去3的倍数,余下0或1或2,然后三个一起拿. 对于以上 ...

  9. codeforces 70D Professor's task(动态二维凸包)

    题目链接:http://codeforces.com/contest/70/problem/D Once a walrus professor Plato asked his programming ...

随机推荐

  1. QT5.6所开放的7个新模块(图表,虚拟键盘,性能分析,静态分析,测试正好,2D渲染)

    The modules newly available to open source users are: Qt Charts Qt Data Visualization Qt Virtual Key ...

  2. 中科燕园GIS外包---地铁GIS项目

    (1)地铁保护及project地质管理     • 地铁保护     地铁交通既有运量大,速度快的特点,又有差别于其它交通方式的在地下执行的空间特殊性,因此地铁的保护显得尤为重要. 首先必须编制完整的 ...

  3. Nginx的500,502,504错误解决方法

    Nginx的500,502,504错误解决方法 一.解决500错误: 1.500错误指的是服务器内部错误,也就是服务器遇到意外情况,而无法履行请求. 2.500错误一般有几种情况: (1)web脚本错 ...

  4. Qt同步线程(比较清楚,而且QMutex QMutexLocker QReadWriteLock QSemaphore QWaitCondition 每个都有例子)

    Qt同步线程 我们知道,多线程有的时候是很有用的,但是在访问一些公共的资源或者数据时,需要进行同步,否则会使数据遭到破坏或者获取的值不正确.Qt提供了一些类来实现线程的同步,如QMutex,QMute ...

  5. 相邻数字的基数不等比:skew数

    2973:Skew数 描述在 skew binary表示中, 第 k 位的值xk表示xk*(2k+1-1). 每个位上的可能数字是0 或 1,最后面一个非零位可以是2, 例如, 10120(skew) ...

  6. CVPapers论文整理工具-开源

    一.工具介绍及运行实例 相信计算机视觉领域的同道中人都知道这个Computer Vision Resource网站, http://www.cvpapers.com/  网页部分截图如下: 可以看到有 ...

  7. win7系统远程连接其它计算机,并且向远程机传输文件

    首先,打开开始菜单,在程序自带的 “附件“ 中找到 "远程桌面连接"并打开,出现远程桌面对话框: 其次,在对话框左下角点击“选项”,选择“本地资源对话框”,在本地设备和资源下点击“ ...

  8. HTML的表单元�

    HTML的表单元素 表单元素是同意用户在表单中(比方:文本域,下拉列表,单选框,复选框等等)输入信息的元素 表单标签 文本域(Text Fields) 当用户要在表单中键入字母,数字等内容时,就会用到 ...

  9. oracle exp实例

    exp nam/pwd@ip:1521:databasename  log=/tmp/export.log  file=/tmp/oracle_database.dmp ./exp cmsuser/x ...

  10. CentOS: make menuconfig error: curses.h: No such file or directory

    the problem  when use centos5 to build kernel or busybox step 1. Centos中关于 ncurses.h:no such file or ...