zoukankan      html  css  js  c++  java
  • Codeforces Round #346 (Div. 2) 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
    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.

     二维向量叉积。通过叉积可以知道两个向量的方向关系(右手定则)。依据这条性质可以轻松 解决这道题目。

    /* ***********************************************
    Author        :
    Created Time  :2016/3/31 1:56:57
    File Name     :346d.cpp
    ************************************************ */
    #include <iostream>
    #include <cstring>
    #include <cstdlib>
    #include <stdio.h>
    #include <algorithm>
    #include <vector>
    #include <queue>
    #include <set>
    #include <map>
    #include <string>
    #include <math.h>
    #include <stdlib.h>
    #include <iomanip>
    #include <list>
    #include <deque>
    #include <stack>
    #define ull unsigned long long
    #define ll long long
    #define mod 90001
    #define INF 0x3f3f3f3f
    #define maxn 10010
    #define cle(a) memset(a,0,sizeof(a))
    const ull inf = 1LL << 61;
    const double eps=1e-5;
    using namespace std;
    priority_queue<int,vector<int>,greater<int> >pq;
    struct Node{
        int x,y;
    };
    struct cmp{
        bool operator()(Node a,Node b){
            if(a.x==b.x) return a.y> b.y;
            return a.x>b.x;
        }
    };
    struct node{
        int x,y;
    }nod[maxn];
    bool cmp(int a,int b){
        return a>b;
    }
    bool check(node a,node b,node c){
        int x1=b.x-a.x;
        int y1=b.y-a.y;
        int x2=c.x-b.x;
        int y2=c.y-b.y;
        if(x1*y2-x2*y1>0)return 1;//大于0为逆时针
        return 0;
    }
    int main()
    {
        #ifndef ONLINE_JUDGE
        freopen("in.txt","r",stdin);
        #endif
        //freopen("out.txt","w",stdout);
        int n;
        while(cin>>n){
            int ans=0;
            for(int i=1;i<=n+1;i++){
                cin>>nod[i].x>>nod[i].y;
            }
            for(int i=3;i<=n+1;i++){
                if(check(nod[i-2],nod[i-1],nod[i]))ans++;
            }
            cout<<ans<<endl;
        }
        return 0;
    }
  • 相关阅读:
    在京东云擎上搭建自己的网站
    在新浪SAE上搭建自己的网站!
    GitHub在windows上代码管理教程
    mongodb在windows下安装教程
    nodejs在windows平台下搭建部署环境教程
    Windows下搭建PHP开发环境,整合Apache+PHP+MySQL(举例软件为32位)
    IIS7发布 EF MVC项目提示404.0页面错误解决方案
    “VS无法连接远程数据库”解决方案
    easyui的 getSelections 与 getSelected 对比区别
    Linq中int转String(解决LINQ to Entities 不识别方法"System.String ToString()",因此该方法无法转换为存储表达式.)
  • 原文地址:https://www.cnblogs.com/pk28/p/5348022.html
Copyright © 2011-2022 走看看