CF388E.Fox and Meteor Shower

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There is a meteor shower on the sky and there are nn meteors. The sky can be viewed as a 2D Euclid Plane and the meteor is point on this plane.

Fox Ciel looks at the sky. She finds out that the orbit of each meteor is a straight line, and each meteor has a constant velocity. Now Ciel wants to know: what is the maximum number of meteors such that any pair met at the same position at a certain time? Note that the time is not limited and can be also negative. The meteors will never collide when they appear at the same position at the same time.

输入格式

The first line contains an integer nn ( 1<=n<=10001<=n<=1000 ). Each of the next nn lines contains six integers: t1,x1,y1,t2,x2,y2t_{1},x_{1},y_{1},t_{2},x_{2},y_{2} — the description of a meteor's orbit: at time t1t_{1} , the current meteor is located at the point ( x1x_{1} , y1y_{1} ) and at time t2t_{2} , the meteor is located at point ( x2x_{2} , y2y_{2} ) ( 106<=t1,x1,y1,t2,x2,y2<=106; t1t2-10^{6}<=t_{1},x_{1},y_{1},t_{2},x_{2},y_{2}<=10^{6}; t_{1}≠t_{2} ).

There will be no two meteors are always in the same position for any time.

输出格式

Print a single integer — the maximum number of meteors such that any pair met at the same position at a certain time.

输入输出样例

  • 输入#1

    2
    0 0 1 1 0 2
    0 1 0 1 2 0
    

    输出#1

    2
    
  • 输入#2

    3
    -1 -1 0 3 3 0
    0 2 -1 -1 3 -2
    -2 0 -1 6 0 3
    

    输出#2

    3
    
  • 输入#3

    4
    0 0 0 1 0 1
    0 0 1 1 1 1
    0 1 1 1 1 0
    0 1 0 1 0 0
    

    输出#3

    1
    
  • 输入#4

    1
    0 0 0 1 0 0
    

    输出#4

    1
    

说明/提示

In example 1, meteor 1 and 2 meet in tt =-1 at (0, 0).

In example 2, meteor 1 and 2 meet in tt =1 at (1, 0), meteor 1 and 3 meet in tt =0 at (0, 0) and meteor 2 and 3 meet in tt =2 at (0, 1).

In example 3, no two meteor meet.

In example 4, there is only 1 meteor, and its velocity is zero.

If your browser doesn't support animation png, please see the gif version here:

http://assets.codeforces.com/images/388e/example1.gif

http://assets.codeforces.com/images/388e/example2.gif

http://assets.codeforces.com/images/388e/example3.gif

http://assets.codeforces.com/images/388e/example4.gif

首页