CQOI2015任务查询系统

题目链接

主席树。

把区间的影响挂在左端点与右端点,建树时顺便对应的插入与删除。

维护一段值域区间的和与数字个数,查询时要注意与第k大的数相同的数可能有很多。

复杂度O(nlogn)

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
#include<cmath>
#include<stack>
#include<map>
#define P puts("lala")
#define cp cerr<<"lala"<<endl
#define ln putchar('\n')
#define sp putchar(' ')
#define pb push_back
#define pf push_front
#define fi first
#define se second 
#define mkp make_pair
using namespace std;
typedef pair<int,int> pii;
inline void read(int &re)
{
    char ch=getchar();int g=1;
    while(ch<'0'||ch>'9') {if(ch=='-')g=-1;ch=getchar();}
    re=0;
    while(ch<='9'&&ch>='0') re=(re<<1)+(re<<3)+(ch^48),ch=getchar();
    re*=g;
}
typedef long long ll;
inline void read(ll &re)
{
    char ch=getchar();ll g=1;
    while(ch<'0'||ch>'9') {if(ch=='-')g=-1;ch=getchar();}
    re=0;
    while(ch<='9'&&ch>='0') re=(re<<1)+(re<<3)+ch-48ll,ch=getchar();
    re*=g;
}
const int N=100050;
int p[N],b[N],to[N],n,m,L[N],R[N],tot,rt[N],ch[N*45][2],cnt[N*45],sz;
ll sum[N*45];
vector<int>ve1[N],ve2[N];

void build(int &o,int l,int r)
{
    o=++sz;
    sum[o]=cnt[o]=0;
    if(l==r) return ;
    int mid=l+r>>1;
    build(ch[o][0],l,mid);build(ch[o][1],mid+1,r);
}

void update(int &o,int last,int l,int r,int x,int k) //k*x
{
    if(o==last)
    {
        o=++sz;
        ch[o][0]=ch[last][0];ch[o][1]=ch[last][1];
        cnt[o]=cnt[last]+k;sum[o]=sum[last]+k*b[x];
    }
    else
    {
        cnt[o]+=k;sum[o]+=k*b[x];
    }
    if(l==r) return ;
    int mid=l+r>>1;
    if(x<=mid) update(ch[o][0],ch[last][0],l,mid,x,k);
    else update(ch[o][1],ch[last][1],mid+1,r,x,k);
}

ll query(int o,int l,int r,int k)
{
    if(l==r) {return b[l]*k;}
    int mid=l+r>>1;
    ll ans=0;
    if(k<=cnt[ch[o][0]]) return query(ch[o][0],l,mid,k);
    else return query(ch[o][1],mid+1,r,k-cnt[ch[o][0]])+sum[ch[o][0]];
}

int main()
{
#ifndef ONLINE_JUDGE
    freopen("1.in","r",stdin);freopen("1.out","w",stdout);
#endif
    int i,j,opt,T;
    read(m);read(n);
    for(i=1;i<=m;++i)
    {
        read(L[i]);read(R[i]);read(p[i]);b[i]=p[i];
    }
    sort(b+1,b+1+m);
    tot=unique(b+1,b+1+m)-(b+1);
    for(i=1;i<=m;++i) to[i]=lower_bound(b+1,b+1+tot,p[i])-b;
    build(rt[0],1,tot);
    for(i=1;i<=m;++i) ve1[L[i]].pb(to[i]),ve2[R[i]+1].pb(to[i]);
    for(i=1;i<=n;++i)
    {
        int siz=ve1[i].size();
        rt[i]=rt[i-1];
        for(j=0;j<siz;++j) update(rt[i],rt[i-1],1,tot,ve1[i][j],1);
        siz=ve2[i].size();
        for(j=0;j<siz;++j) update(rt[i],rt[i-1],1,tot,ve2[i][j],-1);
    }
    ll pre=1;
    for(int cas=1;cas<=n;++cas)
    {
        int x,a,b,c,k;
        read(x);read(a);read(b);read(c);
        k=1+(a*pre+b)%c;
        if(k>cnt[rt[x]]) k=cnt[rt[x]];
        pre=query(rt[x],1,tot,k);
        printf("%lld\n",pre);
    }
    return 0;
}
/*

*/

 

转载于:https://www.cnblogs.com/thkkk/p/7811627.html

根据引用所述,交错序列是一个仅由0和1构成的序列,其中没有相邻的1(可以有相邻的0)。特征值定义为x^ay^b,其中x和y分别表示0和1出现的次数。长度为n的交错序列可能有多个。问题要求计算所有长度为n的交错序列特征值的和除以m的余数。 根据引用所述,输入文件包含一个行,该行包含三个整数n、a、b和m。其中,1≤n≤10000000,0≤a、b≤45,m<100000000。 为了解决这个问题,可以使用动态规划和矩阵快速幂优化的方法,具体实现可以参考引用提到的相关算法。算法的思路是通过计算长度为n的交错序列的特征值,然后将所有特征值求和并对m取余数。 具体步骤如下: 1. 使用动态规划计算长度为n的所有交错序列的特征值,将结果保存在一个矩阵中。 2. 使用矩阵快速幂优化,将动态规划的过程进行优化。 3. 对优化后的结果进行求和,并对m取余数。 4. 输出结果。 参考引用给出的博客中的代码实现,可以帮助你更好地理解和实现该算法。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [BZOJ5298 CQOI2018 交错序列 【DP+矩阵快速幂优化】*](https://blog.csdn.net/weixin_30892987/article/details/99470493)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值