import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); long[] valuesA = new long[n * 2]; for (int i = 0; i < n * 2; i++) { valuesA[i] = sc.nextInt(); } long[] valuesB = new long[n * 2]; for (int i = 0; i < n * 2; i++) { valuesB[i] = sc.nextInt(); } long[] same = new long[n]; for (int i = 0; i < n; i++) { same[i] = sc.nextInt(); } long[] diff = new long[n]; for (int i = 0; i < n; i++) { diff[i] = sc.nextInt(); } long ans = 0; for (int i = 0; i < n; i++) { ans += Math.max(Math.max(valuesA[i * 2] + valuesA[i * 2 + 1], valuesB[i * 2] + valuesB[i * 2 + 1]) + same[i], Math.max(valuesA[i * 2] + valuesB[i * 2 + 1], valuesB[i * 2] + valuesA[i * 2 + 1]) + diff[i]); } System.out.println(ans); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }