CF1545D.AquaMoon and Wrong Coordinate
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Cirno gives AquaMoon a problem. There are m people numbered from 0 to m−1 . They are standing on a coordinate axis in points with positive integer coordinates. They are facing right (i.e. in the direction of the coordinate increase). At this moment everyone will start running with the constant speed in the direction of coordinate increasing. The initial coordinate of the i -th person on the line is xi , and the speed of the i -th person is vi . So the coordinate of the i -th person at the moment t will be xi+t⋅vi .
Cirno captured the coordinates of m people in k consecutive integer moments from 0 to k−1 . In every moment, the coordinates of m people were recorded in arbitrary order.
To make the problem more funny, Cirno modified one coordinate at the moment y ( 0<y<k−1 ) to a different integer.
AquaMoon wants to find the moment y and the original coordinate p before the modification. Actually, she is not a programmer at all. So she wasn't able to solve it. Can you help her?
输入格式
This problem is made as interactive. It means, that your solution will read the input, given by the interactor. But the interactor will give you the full input at the beginning and after that, you should print the answer. So you should solve the problem, like as you solve the usual, non-interactive problem because you won't have any interaction process. The only thing you should not forget is to flush the output buffer, after printing the answer. Otherwise, you can get an "Idleness limit exceeded" verdict. Refer to the interactive problems guide for the detailed information about flushing the output buffer.
The first line contains two integers m and k ( 5≤m≤1000 , 7≤k≤1000 ) — the number of people and the number of recorded moments.
The next k lines contain captured positions. i -th of these lines contains m integers between 1 and 106 (inclusive), representing positions captured by Cirno at the moment i−1 .
The input is guaranteed to be valid (i.e. only one integer was modified to a different value according to the problem statement). Also, it is guaranteed, that 1≤vi≤1000 for all 1≤i≤m .
Hack format:
The first line should contain two integers m and k ( 5≤m≤1000 , 7≤k≤1000 ) — the number of people and the number of moments.
In the second line, there should be m integers x0,x1,…,xm−1 ( 1≤xi≤106 ), where xi is the initial coordinate of the i -th person.
In the third line, there should be m integers v0,v1,…,vm−1 ( 1≤vi≤1000 ), where vi is the speed of the i -th person. It should be true that xi+(k−1)vi≤106 for each 0≤i<m .
In the next k lines, each line should contain m integers. i -th line should contain m distinct integers p0,p1,…,pm−1 ( 0≤pj<m ). The meaning of these numbers: j -th integer in the input in the i -th moment is the coordinate of the pj -th person.
In the last line, there should be three integers y , i , c . Cirno modified the coordinate of the i -th person at the moment y to c ( 1≤y≤k−2 , 0≤i≤m−1 , 1≤c≤106 , c=xi+y⋅vi ).
输出格式
Print a single line with two integers y , p — the moment that contains the modified coordinate and the original coordinate.
输入输出样例
输入#1
5 7 6 9 9 6 9 10 7 10 8 10 11 11 11 10 8 12 12 12 12 9 14 13 12 10 13 11 14 16 14 14 12 15 18 15 15
输出#1
4 13
说明/提示
In the first test the initial coordinates of people are 9 , 6 , 6 , 9 , 9 and their speeds are 1 , 2 , 1 , 1 , 1 . So, it's easy to see, that at the moment 4 one coordinate was modified from 13 to 12 .
This is the first test in the hack format:
<pre class="verbatim"><br></br>5 7<br></br>9 6 6 9 9<br></br>1 2 1 1 1<br></br>2 3 4 1 0<br></br>0 2 3 1 4<br></br>4 3 0 1 2<br></br>1 3 4 0 2<br></br>1 4 0 2 3<br></br>2 4 1 3 0<br></br>2 4 1 3 0<br></br>4 0 12<br></br>