AC日记——[Ahoi2013]作业 bzoj 3236

3236

思路:

  莫队+树状数组维护;

代码:

#include <cmath>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>

using namespace std;

#define maxn 100005

struct QueryType {
    int l,r,a,b,id;
};
struct QueryType qu[maxn*10];

int n,sum[maxn],sum_[maxn],ti[maxn],ans[maxn*10][2];
int ai[maxn],size,bel[maxn],m;

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 int lowbit(int x)
{
    return x&(-x);
}

inline void sadd(int x,int k)
{
    while(x<=n) sum[x]+=k,x+=lowbit(x);
}

inline int ssum(int p,int x)
{
    int res=0;p--;
    while(x) res+=sum[x],x-=lowbit(x);
    while(p) res-=sum[p],p-=lowbit(p);
    return res;
}

inline void tadd(int x,int k)
{
    while(x<=n) sum_[x]+=k,x+=lowbit(x);
}

inline int tsum(int p,int x)
{
    int res=0;p--;
    while(x) res+=sum_[x],x-=lowbit(x);
    while(p) res-=sum_[p],p-=lowbit(p);
    return res;
}

inline bool cmp(QueryType aaa,QueryType bbb)
{
    if(bel[aaa.l]==bel[bbb.l])
    {
        if(bel[aaa.r]==bel[bbb.r])
        {
            if(aaa.l==bbb.l) return aaa.r<bbb.r;
            else return aaa.l<bbb.l;
        }
        return bel[aaa.r]<bel[bbb.r];
    }
    else return bel[aaa.l]<bel[bbb.l];
}

inline void updata(int now,int x)
{
    int pre=ti[now];
    ti[now]+=x,sadd(now,x);
    if(pre==0&&ti[now]==1) tadd(now,1);
    if(pre==1&&ti[now]==0) tadd(now,-1);
}

int main()
{
    in(n),in(m),size=sqrt(n);for(int i=1;i<=n;i++) in(ai[i]),bel[i]=(i-1)/size;
    for(int i=1;i<=m;i++) in(qu[i].l),in(qu[i].r),in(qu[i].a),in(qu[i].b),qu[i].id=i;
    sort(qu+1,qu+m+1,cmp);int l=1,r=0,pos;
    for(int no=1;no<=m;no++)
    {
        if(l<qu[no].l) for(int i=l;i<qu[no].l;i++) updata(ai[i],-1);
        else for(int i=l-1;i>=qu[no].l;i--) updata(ai[i],1);
        if(r>qu[no].r) for(int i=r;i>qu[no].r;i--) updata(ai[i],-1);
        else for(int i=r+1;i<=qu[no].r;i++) updata(ai[i],1);
        l=qu[no].l,r=qu[no].r,ans[qu[no].id][1]=ssum(qu[no].a,qu[no].b),ans[qu[no].id][2]=tsum(qu[no].a,qu[no].b);
    }
    for(int i=1;i<=m;i++) printf("%d %d\n",ans[i][1],ans[i][2]);
    return 0;
}
时间: 2024-09-30 11:33:24

AC日记——[Ahoi2013]作业 bzoj 3236的相关文章

[BZOJ 3236] [Ahoi2013] 作业 &amp;&amp; [BZOJ 3809] 【莫队 | 分块】

题目链接: BZOJ - 3236   BZOJ - 3809 算法一:莫队 首先,单纯的莫队算法是很好想的,就是用普通的第一关键字为 l 所在块,第二关键字为 r 的莫队. 这样每次端点移动添加或删除一个数字,用树状数组维护所求的信息就是很容易的.由于这里有 logn复杂度,所以复杂度还是挺高的. 于是 BZOJ-3236 的时限 100s,我的代码跑了 98s,险过...... However..BZOJ-3809 的出题人(SLYZ的神犇)就没有这么善良了!直接内存限制 28MB 就直接把

AC日记——[ZJOI2012]网络 bzoj 2816

2816 思路: 多个LCT: 代码: #include <bits/stdc++.h> using namespace std; #define maxn 10005 #define ll long long int val[maxn]; struct LinkCutTreeType { int f[maxn],Max[maxn],ch[maxn][2],rev[maxn],sta[maxn],top,cnt[maxn]; void updata(int now) { Max[now]=va

AC日记——[Hnoi2017]影魔 bzoj 4826

4826 思路: 主席树矩阵加减+单调栈预处理: 代码: #include <bits/stdc++.h> using namespace std; #define maxn 200005 #define ll long long #define maxtree maxn*30 class PTreeType { private: int ch[maxtree][2],root[maxn],tot,head[maxn],li[maxn<<1],ri[maxn<<1],E

AC日记——[SCOI2007]蜥蜴 bzoj 1066

1066 思路: 网络流最大流: 拆点,每个点拆成两个,流量为这个点的高度: 注意,文中说的距离是曼哈顿距离(劳资以为开根号wa了不知道多少次): 每两个距离不大于d的点连边,流量inf: 如果距离能够延伸到边界外,就将这个点连向t: 最后输出,蜥蜴个数减去最大流: 来,上代码: #include <cmath> #include <cstdio> #include <cstring> #include <iostream> #include <alg

AC日记——Rmq Problem bzoj 3339

3339 思路: 恶心: 代码: #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; #define maxn 200005 struct TreeNodeType { int l,r,dis,mid,flag; bool if_; }; struct TreeNodeType tree[maxn<<2

AC日记——[HNOI2008]越狱 bzoj 1008

1008 思路: 越狱情况=总情况-不越狱情况: 代码: #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; #define ll long long ll poww(ll x,ll e,ll k) { ll res=1,pos=x;pos%=k; while(e) { if(e&1) res=(res*p

AC日记——NOI2016区间 bzoj 4653

4653 思路: 线段树,指针滑动: 代码: #include <bits/stdc++.h> using namespace std; #define maxn 1000005 #define maxm 200005 #define maxn_ maxn<<2 #define INF 0x7fffffff struct TreeNodeType { int l,r,dis,mid,flag; }; struct TreeNodeType tree[maxn_]; struct Q

树套树专题——bzoj 3110: [Zjoi2013] K大数查询 &amp; 3236 [Ahoi2013] 作业 题解

[原题1] 3110: [Zjoi2013]K大数查询 Time Limit: 20 Sec  Memory Limit: 512 MB Submit: 978  Solved: 476 Description 有N个位置,M个操作.操作有两种,每次操作如果是1 a b c的形式表示在第a个位置到第b个位置,每个位置加入一个数c 如果是2 a b c形式,表示询问从第a个位置到第b个位置,第C大的数是多少. Input 第一行N,M 接下来M行,每行形如1 a b c或2 a b c Outpu

bzoj 3236: [Ahoi2013]作业(缺线段树)

3236: [Ahoi2013]作业 Time Limit: 100 Sec  Memory Limit: 512 MBSubmit: 1744  Solved: 702[Submit][Status][Discuss] Description Input Output Sample Input 3 4 1 2 2 1 2 1 3 1 2 1 1 1 3 1 3 2 3 2 3 Sample Output 2 2 1 1 3 2 2 1 HINT N=100000,M=1000000 Sourc