首页 > 学院 > 开发设计 > 正文

【codeforces 782A】Andryusha and Socks

2019-11-06 06:57:27
字体:
来源:转载
供稿:网友

【题目链接】:http://codeforces.com/contest/782/PRoblem/A

【题意】 如果手套没有成一双,那么其中的一只就会被放在桌子上; 问你桌子上手套的只数最多的时候有几只.

【题解】 按照题意模拟就好 【完整代码】

#include <bits/stdc++.h>using namespace std;#define lson l,m,rt<<1#define rson m+1,r,rt<<1|1#define LL long long#define rep1(i,a,b) for (int i = a;i <= b;i++)#define rep2(i,a,b) for (int i = a;i >= b;i--)#define mp make_pair#define pb push_back#define fi first#define se second#define rei(x) scanf("%d",&x)#define rel(x) scanf("%lld",&x)typedef pair<int, int> pii;typedef pair<LL, LL> pll;const int dx[9] = { 0,1,-1,0,0,-1,-1,1,1 };const int dy[9] = { 0,0,0,-1,1,-1,1,-1,1 };const double pi = acos(-1.0);const int N = 1e5+100;int n, ans = 1,now;bool bo[N];int main(){ //freopen("F://rush.txt", "r", stdin); rei(n); rep1(i, 1, 2 * n) { int x; rei(x); if (!bo[x]) { now++; ans = max(ans, now); bo[x] = true; } else { bo[x] = false; now--; } } printf("%d/n", ans); return 0;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表