CF1537B.Bad Boy

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Riley is a very bad boy, but at the same time, he is a yo-yo master. So, he decided to use his yo-yo skills to annoy his friend Anton.

Anton's room can be represented as a grid with nn rows and mm columns. Let (i,j)(i, j) denote the cell in row ii and column jj . Anton is currently standing at position (i,j)(i, j) in his room. To annoy Anton, Riley decided to throw exactly two yo-yos in cells of the room (they can be in the same cell).

Because Anton doesn't like yo-yos thrown on the floor, he has to pick up both of them and return back to the initial position. The distance travelled by Anton is the shortest path that goes through the positions of both yo-yos and returns back to (i,j)(i, j) by travelling only to adjacent by side cells. That is, if he is in cell (x,y)(x, y) then he can travel to the cells (x+1,y)(x + 1, y) , (x1,y)(x - 1, y) , (x,y+1)(x, y + 1) and (x,y1)(x, y - 1) in one step (if a cell with those coordinates exists).

Riley is wondering where he should throw these two yo-yos so that the distance travelled by Anton is maximized. But because he is very busy, he asked you to tell him.

输入格式

The first line contains a single integer tt ( 1t1041 \leq t \leq 10^4 ) — the number of test cases. Then tt test cases follow.

The only line of each test case contains four integers nn , mm , ii , jj ( 1n,m1091 \leq n, m \leq 10^9 , 1in1\le i\le n , 1jm1\le j\le m ) — the dimensions of the room, and the cell at which Anton is currently standing.

输出格式

For each test case, print four integers x1x_1 , y1y_1 , x2x_2 , y2y_2 ( 1x1,x2n1 \leq x_1, x_2 \leq n , 1y1,y2m1\le y_1, y_2\le m ) — the coordinates of where the two yo-yos should be thrown. They will be thrown at coordinates (x1,y1)(x_1,y_1) and (x2,y2)(x_2,y_2) .

If there are multiple answers, you may print any.

输入输出样例

  • 输入#1

    7
    2 3 1 1
    4 4 1 2
    3 5 2 2
    5 1 2 1
    3 1 3 1
    1 1 1 1
    1000000000 1000000000 1000000000 50

    输出#1

    1 2 2 3
    4 1 4 4
    3 1 1 5
    5 1 1 1
    1 1 2 1
    1 1 1 1
    50 1 1 1000000000

说明/提示

Here is a visualization of the first test case.

首页