시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 256 MB177741.176%

문제

Difficult times lie ahead of Ivica and his Holding – a group of N Croatian companies that are in his ownership. Each of these companies is in debt so the state sent its attorneys to take everything away from him. We have exclusively found out that Ivica managed to make a deal with the state to leave him certain companies in spite of the massive debt. Which ones? We found that out as well.

The state attorneys have laid out N proprietary papers of Ivica’s companies on the table. The debt of first company is written on the first paper A1, the debt of the second company is written on A2, . . . and the debt of the last company is written on the last paper AN. Ivica made a deal with the state to leave the companies AL, AL+1, . . . , AR in his ownership, where L and R represent the positions in an array of papers on the table. Fortunately for Ivica, the attorneys are (also) corrupt. They will force him to take the same contiguous subarray as agreed upon (from L-th to R-th paper), but they will let him swap any two papers on the table for a specific cost. More precisely, swapping papers at positions i and j will cost him |i − j| kunas (Croatian currency). Ivica is desperate. He has only K kunas in his pocket which he now wishes to spend in such a way that the sum of debts of companies he is left with is as small as possible.

Help Ivica achieve his goal.

입력

The first line contains four space-separated integers N, L, R (1 ≤ L ≤ R ≤ N ≤ 100) and K (0 ≤ K ≤ 10 000) from the task description.

The second line contains N integers Ai (0 ≤ Ai ≤ 106) from the task description.

출력

You should output a single integer which represents the smallest amount of total debt Ivica will have if he spends his K kunas optimally.

서브태스크

번호배점제한
122

N ≤ 13 and R = N

233

N ≤ 50 and R = N

333

N ≤ 50

422

No additional constraints.

예제 입력 1

3 2 2 1
1 2 3

예제 출력 1

1

예제 입력 2

5 2 3 3
21 54 12 2 0

예제 출력 2

12

예제 입력 3

6 4 6 100
1 2 3 4 5 6

예제 출력 3

6

채점 및 기타 정보

  • 예제는 채점하지 않는다.