码迷,mamicode.com
首页 > 其他好文 > 详细

CodeForces - 831C Jury marks

时间:2017-07-26 09:37:17      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:output   sam   div   codeforce   中间   rate   any   put   eterm   

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 ai 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 b1,?b2,?...,?bn (it is guaranteed that all values bj 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 and n (1?≤?n?≤?k?≤?2?000) — the number of jury members and the number of scores Polycarp remembers.

The second line contains k integers a1,?a2,?...,?ak (?-?2?000?≤?ai?≤?2?000) — jury‘s marks in chronological order.

The third line contains n distinct integers b1,?b2,?...,?bn (?-?4?000?000?≤?bj?≤?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).

Example

Input
4 1
-5 5 0 20
10
Output
3
Input
2 2
-2000 -2000
3998000 4000000
Output
1

Note

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

In the second example there is only one correct initial score equaling to 4?002?000.

 

题目意思是在一个打分节目中,参赛者不记得自己的初始分数,但记得每个裁判给的分以及若干个分值的中间量,求其出事分数有多少中可能

 

#include<iostream>
#include<string>

using namespace std;

int main() {
string s;
while(getline(cin,s))
{
if(s[0]==‘*‘)
return 0;
int x=s.length();

int flag=0;
for(int i=0;i<x;i++)
{
for(int j=i+1;j<x;j++) { if(s[i]==s[j])
{
//cout<<s[i]<<s[j]<<endl;
for(int k=1;k<x;k++)
{
if(s[i+k]==s[j+k]&&i+k<x&&j+k<x)
{

flag=1;
}
}
}
}
}
if(flag==0)
cout<<s<<" is surprising."<<endl;
else
cout<<s<<" is NOT surprising."<<endl;
}

return 0;
}

CodeForces - 831C Jury marks

标签:output   sam   div   codeforce   中间   rate   any   put   eterm   

原文地址:http://www.cnblogs.com/xibeiw/p/7237735.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!