CF37D.Lesson Timetable

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

When Petya has free from computer games time, he attends university classes. Every day the lessons on Petya’s faculty consist of two double classes. The floor where the lessons take place is a long corridor with MM classrooms numbered from 11 to MM , situated along it.

All the students of Petya’s year are divided into NN groups. Petya has noticed recently that these groups’ timetable has the following peculiarity: the number of the classroom where the first lesson of a group takes place does not exceed the number of the classroom where the second lesson of this group takes place.

Once Petya decided to count the number of ways in which one can make a lesson timetable for all these groups. The timetable is a set of 2N2N numbers: for each group the number of the rooms where the first and the second lessons take place. Unfortunately, he quickly lost the track of his calculations and decided to count only the timetables that satisfy the following conditions:

1) On the first lesson in classroom ii exactly XiX_{i} groups must be present.

2) In classroom ii no more than YiY_{i} groups may be placed.

Help Petya count the number of timetables satisfying all those conditionsю As there can be a lot of such timetables, output modulo 109+710^{9}+7 .

输入格式

The first line contains one integer MM ( 1<=M<=1001<=M<=100 ) — the number of classrooms.

The second line contains MM space-separated integers — XiX_{i} ( 0<=Xi<=1000<=X_{i}<=100 ) the amount of groups present in classroom ii during the first lesson.

The third line contains MM space-separated integers — YiY_{i} ( 0<=Yi<=1000<=Y_{i}<=100 ) the maximal amount of groups that can be present in classroom ii at the same time.

It is guaranteed that all the Xi<=YiX_{i}<=Y_{i} , and that the sum of all the XiX_{i} is positive and does not exceed 10001000 .

输出格式

In the single line output the answer to the problem modulo 109+710^{9}+7 .

输入输出样例

  • 输入#1

    3
    1 1 1
    1 2 3
    

    输出#1

    36
    
  • 输入#2

    3
    1 1 1
    1 1 1
    

    输出#2

    6
    

说明/提示

In the second sample test the first and the second lessons of each group must take place in the same classroom, that’s why the timetables will only be different in the rearrangement of the classrooms’ numbers for each group, e.g. 3!=63!=6 .

首页