A1432.[COCI-2010_2011-contest5]#4 HONI

普及+/提高

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

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 00
7.

输入格式

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 00
7.

输入输出样例

  • 输入#1

    3 
    3 0 1 
    0 1

    输出#1

    3
  • 输入#2

    4 
    1 5 3 0 
    0 2 1 

    输出#2

    33

说明/提示

首页