Problem7836--CF831 - C. Jury Marks

7836: CF831 - C. Jury Marks

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

Polycarp watched TV-show where $k$ jury members one by one rated a participant by adding him a certain number of points (may be negative, i. e. points were subtracted). Initially the participant had some score, and each the marks were one by one added to his score. It is known that the $i$-th jury member gave $a_i$ points.
Polycarp does not remember how many points the participant had before this $k$ marks were given, but he remembers that among the scores announced after each of the $k$ judges rated the participant there were $n\ (n≤k)$ values $b_1,b_2, ...,b_n$ (it is guaranteed that all values $b_j$ are distinct). It is possible that Polycarp remembers not all of the scores announced, i. e. $n<k$. Note that the initial score wasn't announced.
Your task is to determine the number of options for the score the participant could have before the judges rated the participant.

Input

The first line contains two integers $k, n\ (1 ≤n≤k≤ 2000)$ — the number of jury members and the number of scores Polycarp remembers.
The second line contains $k$ integers $a_1,a_2, ...,a_k\ ( -2000 ≤a_i≤ 2000)$ — jury's marks in chronological order.
The third line contains $n$ distinct integers $b_1,b_2, ...,b_n\ ( -4000000 ≤b_j≤ 4 000 000)$ — the values of points Polycarp remembers. Note that these values are not necessarily given in chronological order.

Output

Print the number of options for the score the participant could have before the judges rated the participant. If Polycarp messes something up and there is no options, print "0" (without quotes).

Sample 1 Input

4 1
-5 5 0 20
10

Sample 1 Output

3
The answer is 3 because initially the participant could have - 10, 10 or 15 points.

Sample 2 Input

2 2
-2000 -2000
3998000 4000000

Sample 2 Output

1
There is only one correct initial score equaling to 4 002 000.

HINT

相同题目:CF831

Source/Category