博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #431 (Div. 2) B. Tell Your World 题解
阅读量:5129 次
发布时间:2019-06-13

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

题目:

B. Tell Your World

Connect the countless points with lines, till we reach the faraway yonder.

There are n points on a coordinate plane, the i-th of which being (i, yi).

Determine whether it's possible to draw two parallel and non-overlapping lines, such that every point in the set lies on exactly one of them, and each of them passes through at least one point in the set.

Input

The first line of input contains a positive integer n (3 ≤ n ≤ 1 000) — the number of points.

The second line contains n space-separated integers y1, y2, ..., yn ( - 109 ≤ yi ≤ 109) — the vertical coordinates of each point.

Output

Output "Yes" (without quotes) if it's possible to fulfill the requirements, and "No" otherwise.

You can print each letter in any case (upper or lower).

Examples
input
57 5 8 6 9
output
Yes
input
5-1 -2 0 0 -5
output
No
input
55 4 3 2 1
output
No
input
51000000000 0 0 0 0
output
Yes

 

题目大意:给定N个点,问是否存在两条平行且不重叠的直线让所有点分别落在两条直线上。

 

分析:首先这个问题分为两种情况,一种是一条直线有一个点,另一条直线覆盖了其余所有点;另一种情况是每条直线至少覆盖两个点。对于第一种情况,我们只要枚举每一个点,然后从剩余的点中任取两个点,然后判断是否满足条件;对于第二种情况,我们首先不重复的枚举任意两点构成直线的斜率,再利用一个map对斜率进行计数。最终我们将出现次数大于等于两次的斜率进行检查。

  检查斜率时,取出每一个这样的斜率然后带入所有的点,统计截距的个数,如果等于2,那么满足条件,否则不满足。

 

代码:

#include  
using namespace std;const int maxn = 1005;int n, y[maxn];struct Point { int x, y; Point() {} Point(int x, int y) { this->x = x; this->y = y; }};vector
check;map
cnt, num;int main() { check.clear(); cnt.clear(); scanf("%d", &n); for(int i = 1; i <= n; i++) { scanf("%d", &y[i]); } for(int i = 1; i <= n; i++) { int a = (i + 1) % n; int b = (i + 2) % n; bool tag = true; for(int j = 1; j <= n; j++) { if(j != i) { int tx = j, ty = y[j]; if((y[a] - y[b]) * tx + (b - a) * ty + a * y[b] - b * y[a] != 0) { tag = false; break; } } } if((y[a] - y[b]) * i + (b - a) * y[i] + a * y[b] - b * y[a] == 0) { tag = false; } if(tag) { printf("Yes\n"); return 0; } } for(int i = 1; i <= n - 1; i++) { for(int j = i + 1; j <= n; j++) { double k = (double)(y[j] - y[i]) / (double)(j - i); cnt[k]++; if(cnt[k] == 2) { check.push_back(k); } } } for(int i = 0; i < check.size(); i++) { num.clear(); double k = check[i]; int sum = 0; for(int j = 1; j <= n; j++) { double tb = (double)y[j] - k * (double)j; num[tb]++; if(num[tb] == 1) { sum++; if(sum > 2) { break; } } } if(sum == 2) { printf("Yes\n"); return 0; } } printf("No\n"); return 0;}

 

转载于:https://www.cnblogs.com/wannafly1995/p/8074391.html

你可能感兴趣的文章
图片等比例缩放及图片上下剧中
查看>>
【转载】Linux screen 命令详解
查看>>
background-clip,background-origin
查看>>
Android 高级UI设计笔记12:ImageSwitcher图片切换器
查看>>
【Linux】ping命令详解
查看>>
对团队成员公开感谢博客
查看>>
java学习第三天
查看>>
python目录
查看>>
django+uwsgi+nginx+sqlite3部署+screen
查看>>
Andriod小型管理系统(Activity,SQLite库操作,ListView操作)(源代码下载)
查看>>
在Server上得到数据组装成HTML后导出到Excel。两种方法。
查看>>
浅谈项目需求变更管理
查看>>
经典算法系列一-快速排序
查看>>
设置java web工程中默认访问首页的几种方式
查看>>
ASP.NET MVC 拓展ViewResult实现word文档下载
查看>>
8、RDD持久化
查看>>
第二次团队冲刺--2
查看>>
VMware Tools安装
查看>>
Linux上架设boost的安装及配置过程
查看>>
[转载]加密算法库Crypto——nodejs中间件系列
查看>>