There are n cities in Bearland, numbered 1 through n. Cities are arranged in one long row. The distance between cities i and j is equal to |i - j|.
Limak is a police officer. He lives in a city a. His job is to catch criminals. It's hard because he doesn't know in which cities criminals are. Though, he knows that there is at most one criminal in each city.
Limak is going to use a BCD (Bear Criminal Detector). The BCD will tell Limak how many criminals there are for every distance from a city a. After that, Limak can catch a criminal in each city for which he is sure that there must be a criminal.
You know in which cities criminals are. Count the number of criminals Limak will catch, after he uses the BCD.
The first line of the input contains two integers n and a (1 ≤ a ≤ n ≤ 100) — the number of cities and the index of city where Limak lives.
The second line contains n integers t1, t2, ..., tn (0 ≤ ti ≤ 1). There are ti criminals in the i-th city.
Print the number of criminals Limak will catch.
6 3 1 1 1 0 1 0
3
5 2 0 0 0 1 0
1
In the first sample, there are six cities and Limak lives in the third one (blue arrow below). Criminals are in cities marked red.

Using the BCD gives Limak the following information:
- There is one criminal at distance 0 from the third city — Limak is sure that this criminal is exactly in the third city.
- There is one criminal at distance 1 from the third city — Limak doesn't know if a criminal is in the second or fourth city.
- There are two criminals at distance 2 from the third city — Limak is sure that there is one criminal in the first city and one in the fifth city.
- There are zero criminals for every greater distance.
So, Limak will catch criminals in cities 1, 3 and 5, that is 3 criminals in total.
In the second sample (drawing below), the BCD gives Limak the information that there is one criminal at distance 2 from Limak's city. There is only one city at distance 2 so Limak is sure where a criminal is.
题意:警察要抓罪犯,有n个城市,1代表该城市有罪犯,0表示没有,警察在城市a,警察用可以定位罪犯位置的探测仪了解罪犯位置,这个检测仪只能同时检测两边的罪犯,
问最多可以知道多少个罪犯的位置????
数据分析:
6 3 1 1 1 0 1 0
第一次警察在3城市检测和他距离为0的城市,有一个罪犯,第二次检测和他距离为1的城市,一边有一边没有,无法判断,第三次检测和他距离为2的城市,一边一个,即有两个;所以警察知道1,3,5城市有罪犯,共3个
5 2 0 0 0 1 0第一次警察在2城市检测和他距离为0的城市,没有罪犯, 第二次检测和他距离为1的城市,没有罪犯,第三次检测和他距离为2的城市,只有一个城市,一个罪犯,所以可以检测到这个罪犯, 第四次没有所以警察知道4城市有罪犯,共1个
很简单的题!!!比较a和n/2的位置即可
AC代码如下:
#include "iostream" using namespace std; int main(int argc, char* argv[]) { int s[110]; int n,a,i; int count=0; cin>>n>>a; for (i=1;i<=n;i++) cin>>s[i]; if (a<=n/2) { for (i=1;i<=n;i++) { if (i<a) { if (s[i]==1&&s[2*a-i]==1) count+=2; } else if (i==a) { if (s[i]==1) count++; } else { if (i>=2*a){ if(s[i]==1) count++; } } } } else { for (i=1;i<=n;i++) { if (i>=2*a-n&&i<a) { if (s[i]==1&&s[2*a-i]==1) count+=2; } else if (i==a) { if (s[i]==1) count++; } else { if (i<2*a-n){ if(s[i]==1) count++; } } } } cout<<count<<endl; return 0; }