程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> lines-Game of Lines

lines-Game of Lines

編輯:編程解疑
Game of Lines

Description

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.

Input

  • Line 1: A single integer: N
  • Lines 2..N+1: Line i+1 describes lattice point i with two space-separated integers: Xi and Yi.

Output

  • Line 1: A single integer representing the maximal number of lines Bessie can draw, no two of which are parallel.  

Sample Input

4
-1 1
-2 0
0 0
1 1
Sample Output

4

最佳回答:


http://www.ithao123.cn/content-9145820.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved