CF1415A.Prison Break
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There is a prison that can be represented as a rectangular matrix with n rows and m columns. Therefore, there are n⋅m prison cells. There are also n⋅m prisoners, one in each prison cell. Let's denote the cell in the i -th row and the j -th column as (i,j) .
There's a secret tunnel in the cell (r,c) , that the prisoners will use to escape! However, to avoid the risk of getting caught, they will escape at night.
Before the night, every prisoner is in his own cell. When night comes, they can start moving to adjacent cells. Formally, in one second, a prisoner located in cell (i,j) can move to cells (i−1,j) , (i+1,j) , (i,j−1) , or (i,j+1) , as long as the target cell is inside the prison. They can also choose to stay in cell (i,j) .
The prisoners want to know the minimum number of seconds needed so that every prisoner can arrive to cell (r,c) if they move optimally. Note that there can be any number of prisoners in the same cell at the same time.
输入格式
The first line contains an integer t (1≤t≤104) , the number of test cases.
Each of the next t lines contains four space-separated integers n , m , r , c ( 1≤r≤n≤109 , 1≤c≤m≤109 ).
输出格式
Print t lines, the answers for each test case.
输入输出样例
输入#1
3 10 10 1 1 3 5 2 4 10 2 5 1
输出#1
18 4 6