zoukankan      html  css  js  c++  java
  • bzoj2743 [HEOI2012]采花——树状数组+离线

    题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2743

    和 HH的项链 那道题很像,也是类似的做法;

    但不同的是这里的点只有有前驱时才起作用;

    自己的思路还是不清晰,总想着遍历到的这个点如何如何...

    其实跟这个点无关,只关注它的前驱,给前驱 +1,这个1就表示前驱和自己同时存在;

    那么前驱的前驱 -1,因为它对现在的这个点已经没用了,而它曾经被 +1 过。

    代码如下:

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    using namespace std;
    int const maxn=1e6+5;
    int n,c,m,f[maxn],a[maxn],lst[maxn],prt[maxn];
    struct Q{int l,r,w,bh;}q[maxn];
    int rd()
    {
        int ret=0;char ch=getchar();
        while(ch<'0'||ch>'9')ch=getchar();
        while(ch>='0'&&ch<='9')ret=ret*10+ch-'0',ch=getchar();
        return ret;
    }
    bool cmp(Q x,Q y){return x.r<y.r;}
    bool cmp2(Q x,Q y){return x.bh<y.bh;}
    void add(int x,int k)
    {
        for(;x<=n;x+=(x&-x))f[x]+=k;
    }
    int query(int x)
    {
        int ret=0;
        for(;x;x-=(x&-x))ret+=f[x];
        return ret;
    }
    int main()
    {
        n=rd(); c=rd(); m=rd();
        for(int i=1;i<=n;i++)a[i]=rd();
        for(int i=1;i<=m;i++)q[i].l=rd(),q[i].r=rd(),q[i].bh=i;
        sort(q+1,q+m+1,cmp);
        int tot=1;
        for(int i=1;i<=n;i++)
        {
            if(!lst[a[i]]&&!prt[a[i]])lst[a[i]]=i;
            else if(!prt[a[i]])
            {
                prt[a[i]]=lst[a[i]]; lst[a[i]]=i;
                add(prt[a[i]],1); 
    //            add(i,1);
            }
            else
            {
                add(prt[a[i]],-1);
                prt[a[i]]=lst[a[i]]; lst[a[i]]=i;
                add(prt[a[i]],1);//
    //            add(i,1);
            }
    //        printf("prt[%d]=%d lst[%d]=%d
    ",a[i],prt[a[i]],a[i],lst[a[i]]);
    //        while(q[tot].r==i)q[tot].w=(query(i)-2*query(q[tot].l-1))/2,tot++;
            while(q[tot].r==i)q[tot].w=query(i)-query(q[tot].l-1),tot++;
        }
        sort(q+1,q+m+1,cmp2);
        for(int i=1;i<=m;i++)printf("%d
    ",q[i].w);
        return 0;
    }
  • 相关阅读:
    PHP.ini配置
    Ubuntu下启动/重启/停止apache服务器
    为 Ubuntu 上的 PHP 安装 APC,提升应用速度
    PHP文件上传并解决中文文件名乱码问题
    php目录结构
    PHP 服务器变量 $_SERVER
    PHP 编程的 5 个良好习惯
    PHP导入Excel和导出数据为Excel文件
    SharePoint 计算列公式(拷贝微软的SDK)
    SharePoint2010 文档评分(转)
  • 原文地址:https://www.cnblogs.com/Zinn/p/9184829.html
Copyright © 2011-2022 走看看