poj 1265 Area(Pick定理)

Area

Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 5666   Accepted: 2533

Description

Being well known for its highly innovative products, Merck would definitely be a good target for industrial espionage. To protect its brand-new research and development facility the company has installed the latest system of surveillance robots patrolling the area. These robots move along the walls of the facility and report suspicious observations to the central security office. The only flaw in the system a competitor抯 agent could find is the fact that the robots radio their movements unencrypted. Not being able to find out more, the agent wants to use that information to calculate the exact size of the area occupied by the new facility. It is public knowledge that all the corners of the building are situated on a rectangular grid and that only straight walls are used. Figure 1 shows the course of a robot around an example area.

Figure 1: Example area.

You are hired to write a program that calculates the area occupied
by the new facility from the movements of a robot along its walls. You
can assume that this area is a polygon with corners on a rectangular
grid. However, your boss insists that you use a formula he is so proud
to have found somewhere. The formula relates the number I of grid points
inside the polygon, the number E of grid points on the edges, and the
total area A of the polygon. Unfortunately, you have lost the sheet on
which he had written down that simple formula for you, so your first
task is to find the formula yourself.

Input

The first line contains the number of scenarios.

For each scenario, you are given the number m, 3 <= m < 100,
of movements of the robot in the first line. The following m lines
contain pairs 揹x dy?of integers, separated by a single blank, satisfying
.-100 <= dx, dy <= 100 and (dx, dy) != (0, 0). Such a pair means
that the robot moves on to a grid point dx units to the right and dy
units upwards on the grid (with respect to the current position). You
can assume that the curve along which the robot moves is closed and that
it does not intersect or even touch itself except for the start and end
points. The robot moves anti-clockwise around the building, so the area
to be calculated lies to the left of the curve. It is known in advance
that the whole polygon would fit into a square on the grid with a side
length of 100 units.

Output

The
output for every scenario begins with a line containing 揝cenario #i:?
where i is the number of the scenario starting at 1. Then print a single
line containing I, E, and A, the area A rounded to one digit after the
decimal point. Separate the three numbers by two single blanks.
Terminate the output for the scenario with a blank line.

Sample Input

2
4
1 0
0 1
-1 0
0 -1
7
5 0
1 3
-2 2
-1 0
0 -3
-3 1
0 -3

Sample Output

Scenario #1:
0 4 1.0

Scenario #2:
12 16 19.0

Source

Northwestern Europe 2001

【思路】

Pick定理

同上题。

【代码】

 1 #include<cstdio>
 2 using namespace std;
 3
 4 struct Pt {
 5     int x,y;
 6     Pt(int x=0,int y=0) :x(x),y(y){};
 7 };
 8 Pt p[110];
 9 typedef Pt vec;
10 vec operator - (Pt a,Pt b) { return vec(a.x-b.x,a.y-b.y); }
11
12 int abs(int x) { return x<0? -x:x; }
13 int gcd(int a,int b) { return b==0? a:gcd(b,a%b); }
14 int cross(Pt a,Pt b) { return a.x*b.y-a.y*b.x; }
15 int calc(Pt a,Pt b) { return gcd(abs(a.x-b.x),abs(a.y-b.y)); }
16
17 int n;
18 int main() {
19     int T,kase=0;
20     scanf("%d",&T);
21     while(T--) {
22         scanf("%d",&n);
23         n++;
24         p[0]=Pt(0,0);
25         for(int i=1;i<n;i++) {
26             scanf("%d%d",&p[i].x,&p[i].y);
27             p[i].x+=p[i-1].x , p[i].y+=p[i-1].y;
28         }
29         int S=0,b=0;
30         for(int i=1;i<n-1;i++) {
31             S += cross(p[i],p[i+1]);
32             b += calc(p[i],p[i+1]);
33         }
34         b += calc(p[n-1],p[0])+calc(p[0],p[1]);
35         printf("Scenario #%d:\n%d %d %.1f\n\n",++kase,(S-b+2)/2,b,0.5*S);
36     }
37     return 0;
38 }
时间: 2024-10-10 22:30:19

poj 1265 Area(Pick定理)的相关文章

poj 1265 Area (Pick定理+求面积)

链接:http://poj.org/problem?id=1265 Area Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 4969   Accepted: 2231 Description Being well known for its highly innovative products, Merck would definitely be a good target for industrial espionag

poj 1265 Area(pick 定理)

链接:poj 1265 题意:从原点出发.给出一些dx,dy移动增量,终于形成一个多边形, 求多边形内部的格点数目,边上的格点数目 .以及面积. 补充知识: 1.以格子点为顶点的线段.覆盖的点的个数为gcd(|dx|,|dy|).当中,|dx|,|dy|分别为线段横向增量和纵向增量. 2.Pick定理:设平面上以格子点为顶点的多边形的内部点个数为a.边上点个数为b.面积为S,则 S = a + b/2 -1. 3.随意一个多边形的面积等于以多边形边上的某点为固定点.按顺序求其余点相邻两个点与该点

poj 1265 Area Pick定理

题目链接 pick定理: 一个计算点阵中顶点在格点上的多边形面积公式:S=a+b÷2-1,其中a表示多边形内部的点数,b表示多边形边界上的点数,s表示多边形的面积 知道这个这题就没有难度了. #include <iostream> #include <vector> #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> #include &

Area - POJ 1265(pick定理求格点数+求多边形面积)

题目大意:以原点为起点然后每次增加一个x,y的值,求出来最后在多边形边上的点有多少个,内部的点有多少个,多边形的面积是多少. 分析: 1.以格子点为顶点的线段,覆盖的点的个数为GCD(dx,dy),其中,dxdy分别为线段横向占的点数和纵向占的点数.如果dx或dy为0,则覆盖的点数为dy或dx.2.Pick公式:平面上以格子点为顶点的简单多边形的面积=边上的点数/2+内部的点数+1.3.任意一个多边形的面积等于按顺序求相邻两个点与原点组成的向量的叉积之和. 代码如下: -------------

POJ 1265 Area Pick公式

题目大意:给出一个多边形的轮廓(以边的向量形式给出),求:1.有多少个整点在这个图形里面,2.有多少个点在图形内部,3.图形的面积是多少. 思路:首先明确Pick公式: 公式意义并不是让我们求出这个多边形的面积是多大,一是因为面积没必要用Pick公式求,二是没法求出多边形中间有多少整点.但是面积可以用叉积来求,多边形边上的整点可以用gcd来求,这样经过稍微的变形,就可以求解多边形中间有多少个整点了. CODE(c++AC,g++WA,求高人指点): #include <cstdio> #inc

POJ 1265 Area

Area Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 4713   Accepted: 2129 Description Being well known for its highly innovative products, Merck would definitely be a good target for industrial espionage. To protect its brand-new resear

poj 1265 Area 面积+多边形内点数

Area Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 5861   Accepted: 2612 Description Being well known for its highly innovative products, Merck would definitely be a good target for industrial espionage. To protect its brand-new resear

POJ1265——Area(Pick定理+多边形面积)

Area DescriptionBeing well known for its highly innovative products, Merck would definitely be a good target for industrial espionage. To protect its brand-new research and development facility the company has installed the latest system of surveilla

POJ 1265 Area POJ 2954 Triangle Pick定理

Area Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 5227   Accepted: 2342 Description Being well known for its highly innovative products, Merck would definitely be a good target for industrial espionage. To protect its brand-new resear