[USACO08FEB]连线游戏Game of Lines

题目背景
Farmer John最近发明了一个游戏,来考验自命不凡的贝茜。

题目描述
Farmer John has challenged Bessie to the following game: FJ has a board with dots marked at N (2 ≤ N ≤ 200) distinct lattice points. Dot i has the integer coordinates Xi and Yi (-1,000 ≤ Xi ≤ 1,000; -1,000 ≤ Yi ≤ 1,000).

Bessie can score a point in the game by picking two of the dots and drawing a straight line between them; however, she is not allowed to draw a line if she has already drawn another line that is parallel to that line. Bessie would like to know her chances of winning, so she has asked you to help find the maximum score she can obtain.

游戏开始的时 候,FJ会给贝茜一块画着N (2 <= N <= 200)个不重合的点的木板,其中第i个点 的横、纵坐标分别为X_i和Y_i (-1,000 <= X_i <=1,000; -1,000 <= Y_i <= 1,000)。 贝茜可以选两个点画一条过它们的直线,当且仅当平面上不存在与画出直线 平行的直线。游戏结束时贝茜的得分,就是她画出的直线的总条数。为了在游戏 中胜出,贝茜找到了你,希望你帮她计算一下最大可能得分。

输入输出格式
输入格式:
第1行: 输入1个正整数:N

第2..N+1行: 第i+1行用2个用空格隔开的整数X_i、Y_i,描述了点i的坐标

输出格式:
第1行: 输出1个整数,表示贝茜的最大得分,即她能画出的互不平行的线段数

输入输出样例
输入样例#14 
 -1 1 
 -2 0 
 0 0 
 1 1
输出样例#14 
说明
贝茜能画出以下4种斜率的直线:-101/3以及1。

USACO2008 Feb T1
题面

对斜率进行排序,判重即可(解决精度误差)。

注意:特判一下直线与坐标轴垂直的情况。

 1 #include<bits/stdc++.h>
 2 #define DB double
 3 using namespace std;
 4 const int N=300;
 5 int n,l,ans;
 6 int x[N],y[N];
 7 DB c[N*N];
 8 DB get(int a,int b)
 9 {
10     return 1.0*(y[a]-y[b])/(x[a]-x[b]);
11 } 
12 int main()
13 {
14     scanf("%d",&n);
15     for(int i=1;i<=n;++i) scanf("%d%d",&x[i],&y[i]);
16     for(int i=1;i<=n;++i)
17      for(int j=i+1;j<=n;++j)
18       if(x[i]==x[j]) c[++l]=0;
19       else if(y[i]==y[j]) c[++l]=1e7;
20            else c[++l]=get(i,j);
21     sort(c+1,c+l+1);
22     for(int i=2;i<=l;++i)
23      if(fabs(c[i]-c[i-1])>1e-10) ans++;
24     printf("%d",ans+1);
25     return 0;
26 }
View Code

希望今年可以拿到省一,通过复旦的自招,加油

猜你喜欢

转载自www.cnblogs.com/adelalove/p/9235680.html