zoukankan      html  css  js  c++  java
  • [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

     

  • 相关阅读:
    BasKet Note Pads 1.0 颁发
    为OpenOffice 2.4装置3D幻化结果
    Dolphin:KDE 中的文件操持器
    MySQL Administrator:MySQL 数据库经督工具
    gISOMount-ISO 映像文件挂载东西
    Seahorse:让加密更等闲
    Gmail Notifier:又一个 Gmail 邮件通知步调
    EasyTAG-音频文件 Tag 编辑器
    KAlarm:看护提示挨次
    文泉驿点阵宋体 0.8(嬴政)正式发布
  • 原文地址:https://www.cnblogs.com/adelalove/p/9235680.html
Copyright © 2011-2022 走看看