시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB32242074.074%

문제

A junior college in Singapore just acquired a sailing boat, and the school’s student sailing team undertakes to paint the boat. There are several painting jobs to be done on the boat, such as:

  • primer painting on the keel,
  • painting antifouling below the waterline,
  • painting the deck,
  • etc

Each job can be started and finished on the same day, but in order for the paint to dry, at most one job can be done every day.

The students face the following problem. The supplier of paint charges a certain amount for the paint for each job, but is increasing the price every day by an amount that depends on the job. For example, he may charge \$100 for the primer on the first day, and increase the price by \$2 each day, resulting in a price of \$102 on the second day, \$104 on the third day, etc. For the antifouling, he may charge \$200 on the first day, but increase the price by \$4 each day, resulting in a price of \$204 on the second day, \$208 on the third day, etc. The students have no facilities for storing the paint, and therefore need to buy the paint on the day on which they use it. The students want to complete all jobs in the cheapest possible way.

입력

Your program must read from the standard input the following data. The first line of the input contains one integer, n, ranging from 2 to 20000, which specifies the number of painting jobs. We identify the jobs by numbers, ranging from job 1 to job n, regardless of when they are executed. The following line contains n numbers, each ranging from 1 to 1000. The ith number in this line specifies the price for the paint for job i. The last line contains n numbers, each ranging from 0 to 10. The jth number in this line specifies the amount of money by which the price for the paint for job j increases every day.

출력

The required output, to be written to standard output, consists of a single number, specifying the smallest amount of money sufficient to complete all jobs.

예제 입력 1

7
100 200 500 300 400 200 100
5 2 0 5 7 1 3

예제 출력 1

1837