문제
Author: Stjepan Glavina
From a pile of suggested tasks, authors of COCI must choose ones that will appear in the next round. Difficulty of a task is described with an integer in range 1 to N. For some tasks, however, it’s not easy to exactly determine their difficulty. Authors of COCI decided that these tasks can be considered as having either one of two consecutive difficulties. For example, some task can be considered as having difficulty of either 3 or 4. The next round of COCI will contain exactly N tasks. For each difficulty, there will be exactly one task with that difficulty. Of course, no task will appear twice. Find the number of different ways authors can choose tasks for the next round. We say that two ways are different if for some difficulty, a different task is assigned to that difficulty. Since the expected result can be very large, output the number of ways modulo 1 000 000 007.
입력
The first line of input contains the integer N (2 ≤ N ≤ 100 000). The second line of input contains N integers not greater than 109. i-th number in this line is equal to the number of tasks in a pile having difficulty exactly i. The third line of input contains N-1 integers not greater than 109. i-th number in this line is equal to the number of tasks in a pile having difficulty either i or i+1.
출력
The first and only line of output must contain the required number of ways modulo 1 000 000 007.
예제 입력 1
3
3 0 1
0 1
예제 출력 1
3
예제 입력 2
4
1 5 3 0
0 2 1
예제 출력 2
33
코드를 제출하려면 로그인이 필요합니다.
로그인