博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #346 (Div. 2) - D Bicycle Race
阅读量:7195 次
发布时间:2019-06-29

本文共 3537 字,大约阅读时间需要 11 分钟。

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
60 00 11 11 22 22 00 0
Output
1
Input
161 11 53 53 72 72 96 96 75 75 34 34 43 43 25 25 11 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.

题意:给出一个多边形的全部点坐标(按顺序给),某人求顺时针走一圈有多少条边使他走进多边形内。

分析:叉积轻松搞定,水~

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;const double eps = 1e-6;const double pi = acos(-1.0);const int INF = 0x3f3f3f3f;const int MOD = 1000000007;#define ll long long#define CL(a,b) memset(a,b,sizeof(a))#define lson (i<<1)#define rson ((i<<1)|1)#define MAXN 100010struct node{ int x,y;}s[1010];int chaji(node A, node B, node C){ return (A.x-B.x)*(C.y-B.y)-(C.x-B.x)*(A.y-B.y);}int main(){ int n; while(scanf("%d",&n)==1) { for(int i=0; i<=n; i++) cin>>s[i].x>>s[i].y; s[n+1].x = s[1].x; s[n+1].y = s[1].y; int ans = 0; for(int i=1; i<=n; i++) { if(chaji(s[i-1], s[i], s[i+1]) < 0) ans++; } cout<
<

转载地址:http://extkm.baihongyu.com/

你可能感兴趣的文章
java 线程的开始、暂停、继续
查看>>
南京优步上线黄金区域,接单可享更高奖励!
查看>>
Duanxx 的 STM32 学习: 中断向量表操作
查看>>
java读取本地properties文件
查看>>
机器学习 —— 概率图模型(推理:MAP)
查看>>
[Cycle.js] Hello World in Cycle.js
查看>>
[ios]app后台运行
查看>>
[Hapi.js] Extending the request with lifecycle events
查看>>
Educational Codeforces Round 9 C. The Smallest String Concatenation 排序
查看>>
mysql binlog解析概要
查看>>
jquery技巧之让任何组件都支持类似DOM的事件管理
查看>>
windows下配置两个或多个Tomcat启动的方法
查看>>
设计模式(七): 通过转接头来观察"适配器模式"(Adapter Pattern)
查看>>
C#运算符大全_各种运算符号的概述及作用
查看>>
移动web开发之像素和DPR
查看>>
排序算法总结之快速排序
查看>>
JAVA 爬虫Gecco
查看>>
iOS开发之三个Button实现图片无限轮播(参考手机淘宝,Swift版)
查看>>
JAVA-开发IDE版本
查看>>
$.ajax()方法详解
查看>>