시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 64 MB64403877.551%

문제

The team of the University of Zagreb – Stjepan, Ivan and Gustav – are taking part in the World Finals of the ACM International Collegiate Programming Contest in Morocco. Their technical guide Goran has come up with an invincible strategy to use for solving tasks in the finals.

In the very beginning, each team member quickly estimates the difficulty of each of the N tasks. The difficulties are described by numbers from 1 to 5, and their meaning is the following:

  • 1 - hehehe
  • 2 - bring it on!
  • 3 - well OK.
  • 4 - hmmmm. . .
  • 5 - are you insane?

After this, they will distribute the tasks between them. For simplicity’s sake, the array of tasks will be split into three parts so that each team member gets a nonempty array of consecutive tasks to contemplate about. The distribution is made so that the sum of estimated difficulties is minimal, whereas only the estimate of the team member whom that task is assigned to is calculated. Your task is to calculate that minimal possible sum.

입력

The first line of input contains the integer N (3 ≤ N ≤ 150 000), the number of tasks.

Each of the following three lines contains N integers (from 1 to 5): the estimated task difficulties, given respectively. First of those lines corresponds to Stjepan’s estimates, the second to Ivan’s and the third to Gustav’s.

출력

The first and only line of output must contain the minimal sum of difficulties.

예제 입력 1

3
1 3 3
1 1 1
1 2 3

예제 출력 1

4

예제 입력 2

7
3 3 4 1 3 4 4
4 2 5 1 5 5 4
5 5 1 3 4 4 4

예제 출력 2

19

힌트

Clarification of the first example: Stjepan gets the first, Gustav the second, and Ivan the third task.