CF424D.Biathlon Track

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The first line of the input contains three integers nn , mm and tt ( 3<=n,m<=3003<=n,m<=300 , 1<=t<=1091<=t<=10^{9} ) — the sizes of the land plot and the desired distance covering time.

The second line also contains three integers tpt_{p} , tut_{u} and tdt_{d} ( 1<=tp,tu,td<=1001<=t_{p},t_{u},t_{d}<=100 ) — the time the average biathlete needs to cover a flat piece of the track, an ascent and a descent respectively.

Then nn lines follow, each line contains mm integers that set the heights of each square of the given plot of land. Each of the height values is a positive integer, not exceeding 10610^{6} .

输入格式

In a single line of the output print four positive integers — the number of the row and the number of the column of the upper left corner and the number of the row and the number of the column of the lower right corner of the rectangle that is chosen for the track.

输出格式

输入输出样例

  • 输入#1

    6 7 48
    3 6 2
    5 4 8 3 3 7 9
    4 1 6 8 7 1 1
    1 6 4 6 4 8 6
    7 2 6 1 6 9 4
    1 9 8 6 3 9 2
    4 5 6 8 4 3 7

    输出#1

    4 3 6 7
    
首页