链接:http://poj.org/problem?id=1474

Video Surveillance
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 3247   Accepted: 1440

Description

A friend of yours has taken the job of security officer at the Star-Buy Company, a famous depart- ment store. One of his tasks is to install a video surveillance system to guarantee the security of the customers (and the security of the merchandise of course) on all of the store's countless floors. As the company has only a limited budget, there will be only one camera on every floor. But these cameras may turn around to look in every direction.

The first problem is to choose where to install the camera for every floor. The only requirement is that every part of the room must be visible from there. In the following figure the left floor can be completely surveyed from the position indicated by a dot, while for the right floor, there is no such position, the given position failing to see the lower left part of the floor. 

Before trying to install the cameras, your friend first wants to know whether there is indeed a suitable position for them. He therefore asks you to write a program that, given a ground plan, de- termines whether there is a position from which the whole floor is visible. All floor ground plans form rectangular polygons, whose edges do not intersect each other and touch each other only at the corners. 

Input

The input contains several floor descriptions. Every description starts with the number n of vertices that bound the floor (4 <= n <= 100). The next n lines contain two integers each, the x and y coordinates for the n vertices, given in clockwise order. All vertices will be distinct and at corners of the polygon. Thus the edges alternate between horizontal and vertical.

A zero value for n indicates the end of the input.

Output

For every test case first output a line with the number of the floor, as shown in the sample output. Then print a line stating "Surveillance is possible." if there exists a position from which the entire floor can be observed, or print "Surveillance is impossible." if there is no such position.

Print a blank line after each test case.

Sample Input

  1. 4
  2. 0 0
  3. 0 1
  4. 1 1
  5. 1 0
  6. 8
  7. 0 0
  8. 0 2
  9. 1 2
  10. 1 1
  11. 2 1
  12. 2 2
  13. 3 2
  14. 3 0
  15. 0

Sample Output

  1. Floor #1
  2. Surveillance is possible.
  3.  
  4. Floor #2
  5. Surveillance is impossible.

Source

 
××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××
测模板第二题
××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××
  1. #include <stdio.h>
  2. #include <math.h>
  3. #include <string.h>
  4. #include <stdlib.h>
  5. #include <iostream>
  6. #include <algorithm>
  7.  
  8. #define eps 1e-8
  9. #define MAXX 105
  10. using namespace std;
  11. typedef struct point
  12. {
  13. double x;
  14. double y;
  15. }point;
  16.  
  17. point p[MAXX],s[MAXX];
  18.  
  19. bool dy(double x,double y){ return x>y+eps; }
  20. bool xy(double x,double y){ return x<y-eps; }
  21. bool dyd(double x,double y){ return x>y-eps; }
  22. bool xyd(double x,double y){ return x<y+eps; }
  23. bool dd(double x,double y){ return fabs(x-y)<eps; }
  24.  
  25. double crossProduct(point a,point b,point c)
  26. {
  27. return (c.x-a.x)*(b.y-a.y)-(c.y-a.y)*(b.x-a.x);
  28. }
  29. point IntersectPoint(point u1,point u2,point v1,point v2)
  30. {
  31. point ans=u1;
  32. double t=((u1.x-v1.x)*(v1.y-v2.y)-(u1.y-v1.y)*(v1.x-v2.x))/
  33. ((u1.x-u2.x)*(v1.y-v2.y)-(u1.y-u2.y)*(v1.x-v2.x));
  34. ans.x+=(u2.x - u1.x)*t;
  35. ans.y+=(u2.y - u1.y)*t;
  36. return ans;
  37. }
  38.  
  39. void cut(point p[],point s[],int n,int &len)
  40. {
  41. point tp[MAXX];
  42. p[n]=p[];
  43. for(int i=; i<=n; i++)
  44. {
  45. tp[i] = p[i];
  46. }
  47. int cp=n,tc;
  48. for(int i=; i<n; i++)
  49. {
  50. tc=;
  51. for(int k=; k<cp; k++)
  52. {
  53. if(dyd(crossProduct(p[i],p[i+],tp[k]),0.0))//clock-wise
  54. s[tc++]=tp[k];
  55. if(xy(crossProduct(p[i],p[i+],tp[k])*
  56. crossProduct(p[i],p[i+],tp[k+]),0.0))
  57. s[tc++]=IntersectPoint(p[i],p[i+],tp[k],tp[k+]);
  58. }
  59. s[tc]=s[];
  60. for(int k=; k<=tc; k++)
  61. tp[k]=s[k];
  62. cp=tc;
  63. }
  64. len=cp;
  65. }
  66.  
  67. int main()
  68. {
  69. int n,i,j;
  70. int cas=;
  71. while(scanf("%d",&n)!=EOF && n)
  72. {
  73. for(i= ;i<n; i++)
  74. {
  75. scanf("%lf%lf",&p[i].x,&p[i].y);
  76. }
  77. int len;
  78. cut(p,s,n,len);
  79. printf("Floor #%d\n",cas++);
  80. if(len)
  81. printf("Surveillance is possible.\n\n");
  82. else printf("Surveillance is impossible.\n\n");
  83. }
  84. return ;
  85. }

poj 1474 Video Surveillance (半平面交)的更多相关文章

  1. POJ 1474 Video Surveillance 半平面交/多边形核是否存在

    http://poj.org/problem?id=1474 解法同POJ 1279 A一送一 缺点是还是O(n^2) ...nlogn的过几天补上... /********************* ...

  2. POJ 1474 Video Surveillance(半平面交)

    题目链接 2Y,模版抄错了一点. #include <cstdio> #include <cstring> #include <string> #include & ...

  3. poj 1474 Video Surveillance - 求多边形有没有核

    /* poj 1474 Video Surveillance - 求多边形有没有核 */ #include <stdio.h> #include<math.h> const d ...

  4. poj 1474 Video Surveillance 【半平面交】

    半平面交求多边形的核,注意边是顺时针给出的 //卡精致死于是换(?)了一种求半平面交的方法-- #include<iostream> #include<cstdio> #inc ...

  5. ●poj 1474 Video Surveillance

    题链: http://poj.org/problem?id=1474 题解: 计算几何,半平面交 半平面交裸题,快要恶心死我啦... (了无数次之后,一怒之下把onleft改为onright,然后还加 ...

  6. POJ1474 Video Surveillance(半平面交)

    求多边形核的存在性,过了这题但是过不了另一题的,不知道是模板的问题还是什么,但是这个模板还是可以过绝大部分的题的... #pragma warning(disable:4996) #include & ...

  7. poj1474Video Surveillance(半平面交)

    链接 半平面交的模板题,判断有没有核.: 注意一下最后的核可能为一条线,面积也是为0的,但却是有的. #include<iostream> #include <stdio.h> ...

  8. 2018.07.03 POJ 1279Art Gallery(半平面交)

    Art Gallery Time Limit: 1000MS Memory Limit: 10000K Description The art galleries of the new and ver ...

  9. POJ 3335 Rotating Scoreboard 半平面交求核

    LINK 题意:给出一个多边形,求是否存在核. 思路:比较裸的题,要注意的是求系数和交点时的x和y坐标不要搞混...判断核的顶点数是否大于1就行了 /** @Date : 2017-07-20 19: ...

随机推荐

  1. FastJson--阿里巴巴公司开源的速度最快的Json和对象转换工具(转)

    本文转自:http://blog.csdn.net/djun100/article/details/24237371 这是关于FastJson的一个使用Demo,在Java环境下验证的 class U ...

  2. Sed文本替换一例

    使用 Sed 完成文本替换操作任务是非常合适的. 现在, 假设我要将一个原有 Java 项目中的一些包及下面的类移到另一个项目中复用. Project javastudy: Packages: alg ...

  3. 69道Java Spring 面试&笔试题

    目录 Spring 概述 依赖注入 Spring beans Spring注解 Spring数据访问 Spring面向切面编程(AOP) Spring MVC Spring 概述 1. 什么是spri ...

  4. 关于 MySQL LEFT JOIN 你可能需要了解的三点

    即使你认为自己已对 MySQL 的 LEFT JOIN 理解深刻,但我敢打赌,这篇文章肯定能让你学会点东西! ON 子句与 WHERE 子句的不同 一种更好地理解带有 WHERE ... IS NUL ...

  5. 161111、NioSocket的用法(new IO)

    今天先介绍NioSocket的基本用法,实际使用一般会采用多线程,后面会介绍多线程的处理方法. 从jdk1.4开始,java增加了新的io模式--nio(new IO),nio在底层采用了新的处理方式 ...

  6. ubuntu下搭建JAVA开发环境【转】

    转自:http://jingyan.baidu.com/article/86fae346b696633c49121a30.html JAVA开发环境是一种跨平台的程序设计语言,可以在windows.L ...

  7. Java锁的种类

    转载自:---->http://ifeve.com/java_lock_see/ Java锁的种类以及辨析锁作为并发共享数据,保证一致性的工具,在JAVA平台有多种实现(如 synchroniz ...

  8. Axure简介

    Axure RP(Rapid Prototyping快速原型) 是美国公司Axure Software Solution公司旗舰产品,是一个专业的快速原型设计工具,让负责定义需求和规格.设计功能和界面 ...

  9. STM32F0系列MCU中断向量表的重映射

    最近使用了一款Cortex-M0内核的芯片STM32F030CC,发现它中断向量表的重映射方法与STM32F10x系列的有所区别,在这里记录与分享一下. 由于需要通过IAP进行固件升级,所以芯片的FL ...

  10. 使用163CentOS镜像

    CentOS镜像使用帮助 收录架构 i386 x86_64 SRPMS 收录版本 5 6 更新时间 每5小时更新一次   使用说明 首先备份/etc/yum.repos.d/CentOS-Base.r ...