CF253C.Text Editor

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vasya is pressing the keys on the keyboard reluctantly, squeezing out his ideas on the classical epos depicted in Homer's Odysseus... How can he explain to his literature teacher that he isn't going to become a writer? In fact, he is going to become a programmer. So, he would take great pleasure in writing a program, but none — in writing a composition.

As Vasya was fishing for a sentence in the dark pond of his imagination, he suddenly wondered: what is the least number of times he should push a key to shift the cursor from one position to another one?

Let's describe his question more formally: to type a text, Vasya is using the text editor. He has already written nn lines, the ii -th line contains aia_{i} characters (including spaces). If some line contains kk characters, then this line overall contains (k+1)(k+1) positions where the cursor can stand: before some character or after all characters (at the end of the line). Thus, the cursor's position is determined by a pair of integers (r,c)(r,c) , where rr is the number of the line and cc is the cursor's position in the line (the positions are indexed starting from one from the beginning of the line).

Vasya doesn't use the mouse to move the cursor. He uses keys "Up", "Down", "Right" and "Left". When he pushes each of these keys, the cursor shifts in the needed direction. Let's assume that before the corresponding key is pressed, the cursor was located in the position (r,c)(r,c) , then Vasya pushed key:

  • "Up": if the cursor was located in the first line ( r=1r=1 ), then it does not move. Otherwise, it moves to the previous line (with number r1r-1 ), to the same position. At that, if the previous line was short, that is, the cursor couldn't occupy position cc there, the cursor moves to the last position of the line with number r1r-1 ;
  • "Down": if the cursor was located in the last line ( r=nr=n ), then it does not move. Otherwise, it moves to the next line (with number r+1r+1 ), to the same position. At that, if the next line was short, that is, the cursor couldn't occupy position cc there, the cursor moves to the last position of the line with number r+1r+1 ;
  • "Right": if the cursor can move to the right in this line ( c<a_{r}+1 ), then it moves to the right (to position c+1c+1 ). Otherwise, it is located at the end of the line and doesn't move anywhere when Vasya presses the "Right" key;
  • "Left": if the cursor can move to the left in this line ( c>1 ), then it moves to the left (to position c1c-1 ). Otherwise, it is located at the beginning of the line and doesn't move anywhere when Vasya presses the "Left" key.

You've got the number of lines in the text file and the number of characters, written in each line of this file. Find the least number of times Vasya should push the keys, described above, to shift the cursor from position (r1,c1)(r_{1},c_{1}) to position (r2,c2)(r_{2},c_{2}) .

输入格式

The first line of the input contains an integer nn ( 1<=n<=1001<=n<=100 ) — the number of lines in the file. The second line contains nn integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 0<=ai<=1050<=a_{i}<=10^{5} ), separated by single spaces. The third line contains four integers r1,c1,r2,c2r_{1},c_{1},r_{2},c_{2} ( 1<=r1,r2<=n,1<=c1<=ar1+1,1<=c2<=ar2+11<=r_{1},r_{2}<=n,1<=c_{1}<=a_{r1}+1,1<=c_{2}<=a_{r2}+1 ).

输出格式

Print a single integer — the minimum number of times Vasya should push a key to move the cursor from position (r1,c1)(r_{1},c_{1}) to position (r2,c2)(r_{2},c_{2}) .

输入输出样例

  • 输入#1

    4
    2 1 6 4
    3 4 4 2
    

    输出#1

    3
    
  • 输入#2

    4
    10 5 6 4
    1 11 4 2
    

    输出#2

    6
    
  • 输入#3

    3
    10 1 10
    1 10 1 1
    

    输出#3

    3
    

说明/提示

In the first sample the editor contains four lines. Let's represent the cursor's possible positions in the line as numbers. Letter ss represents the cursor's initial position, letter tt represents the last one. Then all possible positions of the cursor in the text editor are described by the following table.

123

12

123s567

1t345

One of the possible answers in the given sample is: "Left", "Down", "Left".

首页