CF492E.Vanya and Field

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vanya decided to walk in the field of size n×nn×n cells. The field contains mm apple trees, the ii -th apple tree is at the cell with coordinates (xi,yi)(x_{i},y_{i}) . Vanya moves towards vector (dx,dy)(dx,dy) . That means that if Vanya is now at the cell (x,y)(x,y) , then in a second he will be at cell . The following condition is satisfied for the vector: , where is the largest integer that divides both aa and bb . Vanya ends his path when he reaches the square he has already visited.

Vanya wonders, from what square of the field he should start his path to see as many apple trees as possible.

输入格式

Vanya decided to walk in the field of size n×nn×n cells. The field contains mm apple trees, the ii -th apple tree is at the cell with coordinates (xi,yi)(x_{i},y_{i}) . Vanya moves towards vector (dx,dy)(dx,dy) . That means that if Vanya is now at the cell (x,y)(x,y) , then in a second he will be at cell . The following condition is satisfied for the vector: , where is the largest integer that divides both aa and bb . Vanya ends his path when he reaches the square he has already visited.

Vanya wonders, from what square of the field he should start his path to see as many apple trees as possible.

输出格式

Print two space-separated numbers — the coordinates of the cell from which you should start your path. If there are several answers you are allowed to print any of them.

输入输出样例

  • 输入#1

    5 5 2 3
    0 0
    1 2
    1 3
    2 4
    3 1
    

    输出#1

    1 3
    
  • 输入#2

    2 3 1 1
    0 0
    0 1
    1 1
    

    输出#2

    0 0
    

说明/提示

In the first sample Vanya's path will look like: (1,3)(3,1)(0,4)(2,2)(4,0)(1,3)(1,3)-(3,1)-(0,4)-(2,2)-(4,0)-(1,3)

In the second sample: (0,0)(1,1)(0,0)(0,0)-(1,1)-(0,0)

首页