zoukankan      html  css  js  c++  java
  • AC日记——[SDOI2009]HH的项链 洛谷 P1972

    [SDOI2009]HH的项链

    思路;

      莫队;

    代码:

    #include <bits/stdc++.h>
    #define maxn 100005
    #define maxm 400005 
    #define maxnnum 2000005
    using namespace std;
    int bel[maxn];
    struct QueryType {
        int l,r,id;
        bool operator <(const QueryType pos)const
        {
            if(bel[l]==bel[pos.l]) return r<pos.r;
            else return bel[l]<bel[pos.l];
        }
    };
    struct QueryType qu[maxm];
    int n,m,ai[maxn],ans[maxn],blo,now,num[maxnnum];
    inline void in(int &now)
    {
        char Cget=getchar();now=0;
        while(Cget>'9'||Cget<'0')Cget=getchar();
        while(Cget>='0'&&Cget<='9')
        {
            now=now*10+Cget-'0';
            Cget=getchar();
        }
    }
    inline void updata(int x,bool di)
    {
        x=ai[x];
        if(di)
        {
            if(!num[x]) now++;
            num[x]++;
        }
        else
        {
            if(num[x]==1) now--;
            num[x]--;
        }
    }
    int main()
    {
        in(n),blo=sqrt(n);
        for(int i=1;i<=n;i++) in(ai[i]),bel[i]=(i+1)/blo;
        in(m);
        for(int i=1;i<=m;i++) in(qu[i].l),in(qu[i].r),qu[i].id=i;
        sort(qu+1,qu+m+1);
        int l=1,r=0;
        for(int no=1;no<=m;no++)
        {
            while(r<qu[no].r) updata(++r,true);
            while(r>qu[no].r) updata(r--,false);
            while(l<qu[no].l) updata(l++,false);
            while(l>qu[no].l) updata(--l,true);
            ans[qu[no].id]=now;
        }
        for(int i=1;i<=m;i++) printf("%d
    ",ans[i]);
        return 0;
    }
  • 相关阅读:
    python while 格式化 运算符 编码
    python 变量 if
    1、cad安装
    10、云存储—文件上传
    9、云函数
    8、云数据库
    8、小程序云开发
    7、页面交互js
    6、页面样式WXSS
    5、页面结构WXML
  • 原文地址:https://www.cnblogs.com/IUUUUUUUskyyy/p/6945296.html
Copyright © 2011-2022 走看看