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

Problem A CodeForces 556A

时间:2015-08-02 21:31:44      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

Description

  Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones.

  Once he thought about a string of length n consisting of zeroes and ones. Consider the following operation: we choose any two adjacent positions in the string, and if one them contains 0, and the other contains 1, then we are allowed to remove these two digits from the string, obtaining a string of length n - 2 as a result.

  Now Andreid thinks about what is the minimum length of the string that can remain after applying the described operation several times (possibly, zero)? Help him to calculate this number.

  Input

First line of the input contains a single integer n (1 ≤ n ≤ 2·105), the length of the string that Andreid has.

The second line contains the string of length n consisting only from zeros and ones.

  Output

Output the minimum length of the string that may remain after applying the described operations several times.

Sample Input

Input
4
1100
Output
0
Input
5
01010
Output
1
Input
8
11101111
Output
6



#include <iostream>
#include <cstdio>
#include <cstring>
const int maxn=200000;
char s[maxn];
using namespace std;
int main()
{
	int n,c,flag,kase;
	while(scanf("%d",&n)==1&&n)
	{
		c=0;
		flag=0,kase=0;
		scanf("%s",s);
		c=strlen(s);
		for(int i=0;i<c;i++)
		{
			if(s[i]-‘0‘==1)
				++flag;
			if(s[i]-‘0‘==0)
				++kase;
		}
		if(flag>=kase)
			printf("%d\n",flag-kase);
		else
			printf("%d\n",kase-flag);
	}
	return 0;
}
 

Problem A CodeForces 556A

标签:

原文地址:http://www.cnblogs.com/xl1164191281/p/4696717.html

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