D. Bicycle Race

题目连接:

http://www.codeforces.com/contest/659/problem/D

Description

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.

Sample Input

6

0 0

0 1

1 1

1 2

2 2

2 0

0 0

Sample Output

1

Hint

题意

一个图,给你一个多边形,然后有一个人在上面按照顺时针去走

问你有多少条线段,如果他一直走,就会走到这个多边形的内部去。

题解:

这个人在顺时针走,如果连着的两条线段,是逆时针的,显然这个人就走到多边形内部去了

这个就用个叉积去判一判就好了。

代码

#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e3+7;
pair<int,int>p[maxn];
bool check(pair<int,int> A,pair<int,int> B,pair<int,int> C)
{
return (B.first-A.first)*(C.second-B.second)-(C.first-B.first)*(B.second-A.second)>0;
}
int main()
{
int n,ans=0;
scanf("%d",&n);n++;
for(int i=1;i<=n;i++)scanf("%d%d",&p[i].first,&p[i].second);
for(int i=3;i<=n;i++)if(check(p[i-2],p[i-1],p[i]))ans++;
cout<<ans<<endl;
}

最新文章

  1. 关于在django框架里取已登录用户名字的问题
  2. Python之路 day2 文件基础操作
  3. 汇编 int10h(转)
  4. background常用属性
  5. A trip through the Graphics Pipeline 2011_11 Stream Out
  6. java初学知识点
  7. Transact-SQL的除法问题
  8. java 的数据类型
  9. 【转】 iOS开发之打包上传到App Store——(一)各种证书的理解
  10. Android 金融项目整理
  11. codeforces 505B Mr. Kitayuta&#39;s Colorful Graph(水题)
  12. USACO chapter1
  13. js ajax调用请求
  14. git和SVN的区别
  15. laravel5.3初体验
  16. SQL Server 在Alwayson上使用内存表&quot;踩坑&quot;
  17. 英雄联盟LOL用什么语言写的?
  18. Nagle 算法
  19. FOB注意事项
  20. python入门练习题

热门文章

  1. MySQL Warning: Using a password on the command line interface can be insecure.解决办法
  2. Linux文档时间戳查看和修改——stat
  3. Java学习(基本语句,语法,变量)
  4. 【PAT】1005. 继续(3n+1)猜想 (25)
  5. s12-day03-work01 python修改haproxy配置文件(初级版本)
  6. 【LOJ】#2133. 「NOI2015」品酒大会
  7. VS 关于 .sln 文件和 .suo 文件
  8. 快速提高 Vi/Vim 使用效率的原则与途径
  9. 为什么主引导记录的内存地址是0x7C00?
  10. Android之 内容提供器(1)——使用内容提供器访问其它程序共享的数据