//目录

D. Bicycle Race_几何

D. 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
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.

解题报告:

几何公式:

因为人从最左下角走起,那么他有危险的方式只有如图所示的四种方式

#include <bits/stdc++.h>

#define N 1010
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define ll long long
#define INF 1000000007

using namespace std;

int n;

struct point{
    int x,y;
}a[N];



void d(int &x) ///变化量,这里只考虑正负
{
    if(x==0) x=0;
    if(x>0)  x=1;
    if(x<0)  x=-1;
}

bool fun(point p0,point p1,point p2)
{
    int x1=p1.x-p0.x;
    int x2=p2.x-p1.x;
    int y1=p1.y-p0.y;
    int y2=p2.y-p1.y;
    d(x1),d(x2),d(y1),d(y2);
    if (y1 == 1 && x2 == - 1) return true;
    if (x1 == 1 && y2 == 1) return true;
    if (y1 == - 1 && x2 == 1) return true;
    if (x1 == - 1 && y2 == - 1) return true;

    return false ;
}

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

 

方法二:

我是没有搞懂。不过真是碉堡了。

cout<<(n-4)/2;
http://codeforces.com/blog/entry/44093

 

 

 

posted @ 2016-03-31 21:38  小草的大树梦  阅读(410)  评论(0编辑  收藏  举报