Bicycle Race (CodeForces - 659D)(绕水池骑车,喂鳄鱼否?)

                                                       Bicycle Race

                                                                       time limit per test 1 second

                                                               memory limit per test 256 megabytes

                                                                           input standard input

                                                                         output standard output

Maria participates in a bicycle race.

The speedway takes place on the shores of Lake Lucerne, just repeating its contour. As you know, the lake shore consists only of straight sections, directed to the north, south, east or west.

Let's introduce a system of coordinates, directing the Ox axis from west to east, and the Oy axis from south to north. As a starting position of the race the southernmost point of the track is selected (and if there are several such points, the most western among them). The participants start the race, moving to the north. At all straight sections of the track, the participants travel in one of the four directions (north, south, east or west) and change the direction of movement only in bends between the straight sections. The participants, of course, never turn back, that is, they do not change the direction of movement from north to south or from east to west (or vice versa).

Maria is still young, so she does not feel confident at some turns. Namely, Maria feels insecure if at a failed or untimely turn, she gets into the water. In other words, Maria considers the turn dangerous if she immediately gets into the water if it is ignored.

Help Maria get ready for the competition — determine the number of dangerous turns on the track.

Input

The first line of the input contains an integer n (4 ≤ n ≤ 1000) — the number of straight sections of the track.

The following (n + 1)-th line contains pairs of integers (xi, yi) ( - 10 000 ≤ xi, yi ≤ 10 000). The first of these points is the starting position. The i-th straight section of the track begins at the point (xi, yi) and ends at the point (xi + 1, yi + 1).

It is guaranteed that:

  • the first straight section is directed to the north;
  • the southernmost (and if there are several, then the most western of among them) point of the track is the first point;
  • the last point coincides with the first one (i.e., the start position);
  • any pair of straight sections of the track has no shared points (except for the neighboring ones, they share exactly one point);
  • no pair of points (except for the first and last one) is the same;
  • no two adjacent straight sections are directed in the same direction or in opposite directions.

Output

Print a single integer — the number of dangerous turns on the track.

Examples

input

6
0 0
0 1
1 1
1 2
2 2
2 0
0 0

output

1

input

16
1 1
1 5
3 5
3 7
2 7
2 9
6 9
6 7
5 7
5 3
4 3
4 4
3 4
3 2
5 2
5 1
1 1

output

6

Note

The first sample corresponds to the picture:

The picture shows that you can get in the water under unfortunate circumstances only at turn at the point (1, 1). Thus, the answer is 1.

题解

题的大致意思是:小明有天打游戏打到脑壳疼,决定去绕湖骑车缓解一下,这个湖比较特别,是像素风(也就是都是直线),小明从左下角开始骑行,按左上右下的方向(就是顺时针),依次给出二维坐标,最后回到起点,问有几个位置小明摔倒后会喂像素小鳄鱼(也就是哪些位置摔倒后可能会掉到湖里)。我总结了一下,四种位置摔下去会尸骨无存,如下图所示(手画稿不准嫌弃!看懂就行!)

这是法一

看边

①yi-1 = yi, xi-1 < xi.     xi = xi+1, yi < yi+1

②xi-1 = xi, yi-1 > yi.     yi = yi+1, xi < xi+1

③xi-1 = xi, yi-1 < yi.     yi = yi+1, xi > xi+1

④yi-1 = yi, xi-1 > xi.     xi = xi+1, yi > yi+1

图上xi,yi写成x,y了。。。失误失误,凑乎看吧。。懒得改了

所以只要是这四种情况之一,mark+1就好

# include <cstdio>
# include <algorithm>
# include <cstring>

using namespace std;
const int maxn = 1e4 + 10;

struct node{
	int x;
	int y;
}a[maxn];

int main()
{
	int n;
	scanf("%d",&n);
	for(int i=0;i<n;i++) scanf("%d%d",&a[i].x,&a[i].y);
	
	int mark = 0;
	for(int i=1;i<n-1;i++)
	{
		if(a[i-1].y==a[i].y && a[i].x==a[i+1].x && a[i-1].x<a[i].x && a[i].y<a[i+1].y) mark++;
		
		if(a[i-1].y==a[i].y && a[i].x==a[i+1].x && a[i-1].x>a[i].x && a[i].y>a[i+1].y) mark++;
		if(a[i-1].x==a[i].x && a[i].y==a[i+1].y && a[i-1].y<a[i].y && a[i].x>a[i+1].x) mark++;
		if(a[i-1].x==a[i].x && a[i].y==a[i+1].y && a[i-1].y>a[i].y && a[i].x<a[i+1].x) mark++;
	}
	printf("%d\n",mark);
	return 0;
 } 

这是法二

看角

就一个式子(n-4)/2,怎么来的呢?先来研究一下这个多边形的内角,以样例一为例

图有点丑。。凑乎看吧。。。

由题可知,小明走向是正的东南西北,所以多边形的内角不是90°就是270°,由图可以看出,内角为270°时容易喂鳄鱼。所以我们设这个多边形有x个270°的内角,因为是n边形,所以一共n个内角,n边形的内角和为180*(n-2)。所以可以得出一个等式:

180*(n-2)=  x* 270 + (n-x)*90

化简一下就是:x = (n - 4) / 2

是不是突然简单好多。。。所以这种题以后不光要看边,还要看角的关系

这是法三

同样是看角,不过这次用的是数学知识,叉积(又叫外积、向量积、叉乘。。。),若叉乘大于0,就可能要喂鳄鱼了

主要代码:

if ( (x2 - x1) * (y3 - y2) - (y2 - y1) * (x3 - x2) > 0 )   ans++;

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值