Rectilinear polygon
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 2125   Accepted: 249

Description

Given is n points with integer coordinates in the plane. Is it is possible to construct a simple, that is non-intersecting, rectilinear polygon with the given points as vertices? In a rectilinear polygon there are at least 4 vertices and every edge is either horizontal or vertical; each vertex is an endpoint of exactly one horizontal edge and one vertical edge. There are no holes in a polygon.

Input

The first line of input is an integer giving the number of cases that follow. The input of each case starts with an integer 4 ≤ n ≤ 100000 giving the number of points for this test case. It is followed by n pairs of integers specifying the x and y coordinates of the points for this case.

Output

The output should contain one line for each case on input. Each line should contain one integer number giving the length of the rectilinear polygon passing throught the given points when it exists; otherwise, it should contain -1.

Sample Input

1
8
1 2
1 0
2 1
2 2
3 2
3 1
4 0
4 2

Sample Output

12
题意:平面图上给出一些点的坐标,通过这些点希望构成一类多边形,多边形中间没有洞,并且每个点是且仅是该多边形的一条横边和一条竖边的端点,且横边竖边不相交(横竖边共用一个端点的情况除外),若给出的那些点能构成符合要求的多边形,
那么计算多边形的周长,否则输出-1.
思路:平面扫描,按照x轴扫描可以获得所有竖边的长度和,按y轴的同理,先讨论x轴的情况,将点按照x坐标大小排序后,同一列上的点按照y坐标从小到大排序,之后再观察多边形每一列的特性,可以发现每一列上点必定偶数个,相邻两个配对可以成为一条边,若出现奇数条边,肯定是构不成多边形的。按y轴扫描
也是相同做法。其次还要判断是否有横竖边相交的情况以及是否有洞(图是否连通)即可。
AC代码:
#define _CRT_SECURE_NO_DEPRECATE
#include<iostream>
#include<stdio.h>
#include<algorithm>
#include<queue>
#include<set>
#include<vector>
#include<cstring>
#include<string>
#include<functional>
#include<cmath>
#include<stack>
using namespace std;
const int N_MAX = + ;
#define INF 0x3f3f3f3f
#define EPS 1e-10
#define equals(a,b) (fabs(a-b)<EPS)
static const int COUNTER_CLOCKWISE = -;
static const int CLOCKWISE = ;
static const int ONLINE_BACK = ;
static const int ONLINE_FRONT = -;
static const int ON_SEGMENT = ; int n;//点的数量 int link_x[N_MAX], link_y[N_MAX]; class point {
public:
int x, y;
int id;
point(int x = , int y = , int id = ) :x(x), y(y), id(id) {} int get(const bool& is_x) {//用于双向扫描
return is_x ? x : y;
}
void link(const point& b, const bool& is_x) {//当前点与点b相连,!!!!不是必须
(is_x ? link_x[id] : link_y[id]) = b.id;
(is_x ? link_x[b.id] : link_y[b.id]) = id;
}
int get_link(const bool &is_x) {
return is_x ? link_x[id] : link_y[id];
} point operator +(point p) { return point(x + p.x, y + p.y); }
point operator -(point p) { return point(x - p.x, y - p.y); }
point operator *(double a) { return point(a*x, a*y); }
point operator /(double a) { return point(x / a, y / a); }
double norm() { return x*x + y*y; }
double abs() { return sqrt(norm()); }
bool operator<(const point&p)const {
return x != p.x ? x < p.x : y < p.y;
}
bool operator ==(const point&p)const {
return x == p.x && y == p.y;
}
double dot(point p) {
return x*p.x + y*p.y;
}
double det(point p) {
return x*p.y - y*p.x;
}
}P[N_MAX]; bool is_x;
bool cmp( point a, point b) {
int ax = a.get(is_x);
int ay = a.get(!is_x);
int bx = b.get(is_x);
int by = b.get(!is_x);
if (ax != bx) {
return ax < bx;
}
else return ay < by;
} typedef point Vector;
struct Segment {
point p1, p2;
Segment(point p1 = point(), point p2 = point()) :p1(p1), p2(p2) {}
};
//vector<Segment>S_x;
Segment S_x[N_MAX]; typedef Segment line;
class Circle {
public:
point c;
double r;
Circle(point c = point(), double r = 0.0) :c(c), r(r) {} };
typedef vector<point>Polygon;
//p在线段s上的投影
point project(Segment s, point p) {
Vector base = s.p2 - s.p1;
double r = base.dot(p - s.p1) / base.norm();
return s.p1 + base*r;
}
//点p关于直线s的对称点
point reflect(Segment s, point p) {
return p + (project(s, p) - p)*2.0;
}
//点与点间距离
double getDistance(point a, point b) {
return (a - b).abs();
}
//点到直线距离
double getDistanceLP(line l, point p) {
return fabs((l.p1 - l.p2).det(p - l.p1)) / ((l.p2 - l.p1).abs());
}
//点到线段的距离
double getDistanceSP(Segment s, point p) {
if ((s.p2 - s.p1).dot(p - s.p1) < 0.0)return (p - s.p1).abs();
if ((s.p1 - s.p2).dot(p - s.p2) < 0.0)return (p - s.p2).abs();//!!!!!
return getDistanceLP(s, p);
}
//判断线段p0p1与线段p0p2的旋转关系
int ccw(point p0, point p1, point p2) {
Vector a = p1 - p0;
Vector b = p2 - p0;
if (a.det(b) > EPS)return COUNTER_CLOCKWISE;
if (a.det(b) < -EPS)return CLOCKWISE;
if (a.dot(b) < -EPS)return ONLINE_BACK;
if (a.norm() >= b.norm())return ON_SEGMENT;//!!
return ONLINE_FRONT;
}
//判断线段p1p2与p3p4是否相交
bool intersect(point p1, point p2, point p3, point p4) {
return (ccw(p1, p2, p3)*ccw(p1, p2, p4) < &&//!!!
ccw(p3, p4, p1)*ccw(p3, p4, p2) < );
} //线段是否相交
bool intersect(Segment s1, Segment s2) {
return intersect(s1.p1, s1.p2, s2.p1, s2.p2);
} typedef vector<point>Polygon; bool judge_intersect(const Segment&a,const int&amount) {
int y = a.p1.y, x1 = a.p1.x, x2 = a.p2.x;
for (int i = ; i <amount;i++) {
if (y > S_x[i].p1.y&&y < S_x[i].p2.y&&x1<S_x[i].p1.x&&x2>S_x[i].p2.x) {
return true;
}
}
return false;
} int traverse(int&amount) {//返回总长度,不符条件-1
sort(P, P + n, cmp);//!!!!每次扫描前先排序
int count = , sum = ;
for (int i = ; i < n; i++) {//遍历每一个点
if (P[i].get(is_x)!=P[i - ].get(is_x)) {//到了新的扫描层
if (count & )return -;
count = ;
}
else {
count++;
if (!(count & )) {
sum += P[i].get(!is_x) - P[i - ].get(!is_x);
P[i].link(P[i - ], is_x); if (is_x) {//若是横向扫描,直接记录连接好的线段
S_x[amount++]=Segment(P[i-], P[i]); }
else {//竖向扫描,判断当前连接线段是否和上面的记录的线段相交
if (judge_intersect(Segment(P[i-],P[i]),amount)) {
return -;
}
}
}
}
}
return sum;
} int solve() {
int amount = ;//记录连边的个数
is_x=;
int num_x = traverse(amount);
if (num_x == -)return -;//!!!! is_x =;
int num_y = traverse(amount);
if (num_y == -)return -;
int loop = ,count=; do {//判断不联通的图
loop = is_x ? link_x[loop] : link_y[loop];
count++;
is_x = !is_x;
} while (loop != ); if (count != n)return -;
return num_x + num_y;
} int main() {
int t;
scanf("%d", &t);
while (t--) { scanf("%d", &n);
for (int i = ; i < n; i++) {
int x, y;
scanf("%d%d", &x, &y);
P[i] = point(x, y, i);
}
printf("%d\n",solve());
}
return ;
}

poj 3293 Rectilinear polygon的更多相关文章

  1. POJ 3293 Rectilinear polygon(几何基础)

    [题目链接] http://poj.org/problem?id=3293 [题目大意] 给出一些点,每个点只能向外引出一条平行X轴,和Y轴的边, 问能否构成一个闭多边形,如果能,返回多边形的总边长, ...

  2. poj 2007 Scrambled Polygon(极角排序)

    http://poj.org/problem?id=2007 Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 6701   A ...

  3. POJ 1179 IOI1998 Polygon

    Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 5472   Accepted: 2334 Description Polyg ...

  4. POJ 2007 Scrambled Polygon 凸包

    Scrambled Polygon Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 7214   Accepted: 3445 ...

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

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

  6. ●POJ 2007 Scrambled Polygon

    题链: http://poj.org/problem?id=2007 题解: 计算几何,极角排序 按样例来说,应该就是要把凸包上的i点按 第三像限-第四像限-第一像限-第二像限 的顺序输出. 按 叉积 ...

  7. POJ 2007 Scrambled Polygon 极角序 水

    LINK 题意:给出一个简单多边形,按极角序输出其坐标. 思路:水题.对任意两点求叉积正负判断相对位置,为0则按长度排序 /** @Date : 2017-07-13 16:46:17 * @File ...

  8. 简单几何(极角排序) POJ 2007 Scrambled Polygon

    题目传送门 题意:裸的对原点的极角排序,凸包貌似不行. /************************************************ * Author :Running_Time ...

  9. POJ 2007 Scrambled Polygon (简单极角排序)

    题目链接 题意 : 对输入的点极角排序 思路 : 极角排序方法 #include <iostream> #include <cmath> #include <stdio. ...

随机推荐

  1. 《毛毛虫团队》第九次团队作业:BETA冲刺与团队项目验收

    一:实验名称:Beta冲刺与验收准备 二:实验目的与要求 (1)掌握软件黑盒测试技术: (2)学会编制软件项目总结PPT.项目验收报告: (3)掌握软件项目验收内容,验收流程. 三.实验内容与步骤 任 ...

  2. 解决在matplotlib使用中文的问题

    原生的matplotlib并不支持直接使用中文,而需要修改一下相应的文件,上网搜了下,找到一个最简洁的办法. NO.1 找到matplotlibrc文件 C:\Python26\Lib\site-pa ...

  3. Web前端 优化方案

    1.减少Http请求  在一个页面中图片,CSS,JS可能N个,如果每个资源都去请求一次服务器的话,那么服务器就会为每个资源开一个线程来完成,这样的话对服务器的压力就很大了.所以解决的方法就是合并资源 ...

  4. bootstrap 翻页的状态

    翻页的状态 下面的实例演示了上表中所讨论的 class .disabled 的用法: <!DOCTYPE html><html><head><meta htt ...

  5. 沙盒(SandBox)

    iOS 应用沙盒机制就是指 iOS 应用程序只能在为该程序创建的文件系统中读取文件,不可以去其它地方访问,此区域被成为沙盒,所以所有的非代码文件都要保存在此,例如图像,图标,声音,映像,属性列表,文本 ...

  6. js函数节流和函数防抖

    概念解释 函数节流: 频繁触发,但只在特定的时间内才执行一次代码 函数防抖: 频繁触发,但只在特定的时间内没有触发执行条件才执行一次代码 函数节流 函数节流应用的实际场景,多数在监听页面元素滚动事件的 ...

  7. Android读书笔记四

    第四章 这是一次源代码之旅,学到了如何下载和编译Android源代码和Linux内核源代码.来详细阐述一下一些具体过程 一.Android源代码下载环境 1.安装下载Android源代码的环境配置 ( ...

  8. php进行文件的强制下载

    浏览器下载文件,例如在浏览器中可以直接打开的文件(.gif /.txt等).在进行文件下载操作时,默认是通过浏览器直接打开,而不是下载保存文件.并且通过这种方法下载文件可以不暴漏下载文件所在的路径,可 ...

  9. 201621123080《Java程序设计》第十一周学习总结

    201621123080<Java程序设计>第十一周学习总结 1. 本周学习总结 1.1 以你喜欢的方式(思维导图或其他)归纳总结多线程相关内容. 2. 书面作业 本次PTA作业题集多线程 ...

  10. Python正则表达式详解——re库

    一.简介 1.1.相关链接 官方文档: Python2:https://docs.python.org/2/library/re.html Python3:https://docs.python.or ...