zoukankan      html  css  js  c++  java
  • 【codeforces 782A】Andryusha and Socks

    【题目链接】: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
    ", ans);
        return 0;
    }
  • 相关阅读:
    理解原型Prototype、继承
    解决js跨域问题的基本方法之 -------JSONP
    CSS3中动画效果Transitions与Animations的区别
    支付宝支付实例
    上线实例
    Celery
    Redis
    git
    jwt认证
    登录认证
  • 原文地址:https://www.cnblogs.com/AWCXV/p/7626577.html
Copyright © 2011-2022 走看看