您的位置:首页 > 其它

Codeforces Round #403 (Div. 2, based on Technocup 2017 Finals) A

2017-04-18 18:19 453 查看
A. Andryusha and Sockstime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputAndryusha is an orderly boy and likes to keep things in their place.Today he faced a problem to put his socks in the wardrobe. He has n distinct pairs of socks which are initially in a bag. The pairs are numbered from 1 to n. Andryusha wants to put paired socks together and put them in the wardrobe. He takes the socks one by one from the bag, and for each sock he looks whether the pair of this sock has been already took out of the bag, or not. If not (that means the pair of this sock is still in the bag), he puts the current socks on the table in front of him. Otherwise, he puts both socks from the pair to the wardrobe.Andryusha remembers the order in which he took the socks from the bag. Can you tell him what is the maximum number of socks that were on the table at the same time?InputThe first line contains the single integer n (1 ≤ n ≤ 105) — the number of sock pairs.The second line contains 2n integers x1, x2, ..., x2n (1 ≤ xi ≤ n), which describe the order in which Andryusha took the socks from the bag. More precisely, xi means that the i-th sock Andryusha took out was from pair xi.It is guaranteed that Andryusha took exactly two socks of each pair.OutputPrint single integer — the maximum number of socks that were on the table at the same time.Examplesinput
1
1 1


output
1


input
3
2 1 1 3 2 3


output
2


Note

In the first example Andryusha took a sock from the first pair and put it on the table. Then he took the next sock which is from the first pair as well, so he immediately puts both socks to the wardrobe. Thus, at most one sock was on the table at the same time.

In the second example Andryusha behaved as follows:

Initially the table was empty, he took out a sock from pair 2 and put it on the table.

Sock (2) was on the table. Andryusha took out a sock from pair 1 and
put it on the table.

Socks (1, 2) were on the table. Andryusha took out a sock from pair 1,
and put this pair into the wardrobe.

Sock (2) was on the table. Andryusha took out a sock from pair 3 and
put it on the table.

Socks (2, 3) were on the table. Andryusha took out a sock from pair 2,
and put this pair into the wardrobe.

Sock (3) was on the table. Andryusha took out a sock from pair 3 and
put this pair into the wardrobe.

Thus, at most two socks were on the table at the same time.
题解:这题确实是个水题。。。题意很好理解,就不多说了,直接上代码。
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<map>
#include<iostream>
using namespace std;
int tip[100005];
int max(int x,int y)
{
if(x>y)
return x;
else
return y;
}
int main()
{
int n,i,j,k,a;
while(~scanf("%d",&n))
{
memset(tip,0,sizeof(tip));
int ans=0;
int temp=0;
for(i=0;i<n*2;i++)
{
scanf("%d",&a);
if(tip[a]==1)
{
temp--;
tip[a]++;
}
else if(tip[a]==0)
{
temp++; tip[a]++;
if(ans<temp)
ans=temp;
}
}
printf("%d\n",ans);

}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐