A10158 | Anton and Lines
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The teacher gave Anton a large geometry homework, but he didn't do it (as usual) as he participated in a regular round on Codeforces. In the task he was given a set of $n$ lines defined by the equations $y=k_{i}·x+b_{i}$ . It was necessary to determine whether there is at least one point of intersection of two of these lines, that lays strictly inside the strip between $x_{1}<x_{2}$ . In other words, is it true that there are $1<=i<j<=n$ and $x',y'$ , such that:
- $y'=k_{i}*x'+b_{i}$ , that is, point $(x',y')$ belongs to the line number $i$ ;
- $y'=k_{j}*x'+b_{j}$ , that is, point $(x',y')$ belongs to the line number $j$ ;
- $x_{1}<x'<x_{2}$ , that is, point $(x',y')$ lies inside the strip bounded by $x_{1}<x_{2}$ .
You can't leave Anton in trouble, can you? Write a program that solves the given task.
- $y'=k_{i}*x'+b_{i}$ , that is, point $(x',y')$ belongs to the line number $i$ ;
- $y'=k_{j}*x'+b_{j}$ , that is, point $(x',y')$ belongs to the line number $j$ ;
- $x_{1}<x'<x_{2}$ , that is, point $(x',y')$ lies inside the strip bounded by $x_{1}<x_{2}$ .
You can't leave Anton in trouble, can you? Write a program that solves the given task.
输入格式
The first line of the input contains an integer $n$ ( $2<=n<=100000$ ) — the number of lines in the task given to Anton. The second line contains integers $x_{1}$ and $x_{2}$ ( $-1000000<=x_{1}<x_{2}<=1000000$ ) defining the strip inside which you need to find a point of intersection of at least two lines.
The following $n$ lines contain integers $k_{i}$ , $b_{i}$ ( $-1000000<=k_{i},b_{i}<=1000000$ ) — the descriptions of the lines. It is guaranteed that all lines are pairwise distinct, that is, for any two $i≠j$ it is true that either $k_{i}≠k_{j}$ , or $b_{i}≠b_{j}$ .
The following $n$ lines contain integers $k_{i}$ , $b_{i}$ ( $-1000000<=k_{i},b_{i}<=1000000$ ) — the descriptions of the lines. It is guaranteed that all lines are pairwise distinct, that is, for any two $i≠j$ it is true that either $k_{i}≠k_{j}$ , or $b_{i}≠b_{j}$ .
输出格式
Print "Yes" (without quotes), if there is at least one intersection of two distinct lines, located strictly inside the strip. Otherwise print "No" (without quotes).
输入输出样例
输入 #1
4 1 2 1 2 1 0 0 1 0 2
输出 #1
NO
输入 #2
2 1 3 1 0 -1 3
输出 #2
YES
输入 #3
2 1 3 1 0 0 2
输出 #3
YES
输入 #4
2 1 3 1 0 0 3
输出 #4
NO
In the first sample there are intersections located on the border of the strip, but there are no intersections located strictly inside it.


C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted