E. Monotonic Renumeration(思维+区间合并+细节)

16 篇文章 0 订阅
该博客讨论了一种处理单调不减序列的方法,并详细解释了如何计算区间内的相同元素贡献。博主通过模拟和差分更新,解决了在处理长度为1的区间时的特殊情况,并给出了C++代码实现。算法主要涉及数组操作、区间处理和动态维护。
摘要由CSDN通过智能技术生成

https://codeforces.com/problemset/problem/1102/E


思路:模拟发现肯定是单调不减的序列。且相同颜色的一块最后要合成一整块相同的算其贡献。开始自己map+差分搞有地方理解错误,而且自己的处理对于1个长度的区间不好处理。

所以处理时转化成对0的位置++,对于一个区间的位置我们不必给他记录差分,对于一个区间我们记录[l+1]++,[r+1]--就好。

#include<iostream>
#include<vector>
#include<queue>
#include<cstring>
#include<cmath>
#include<map>
#include<set>
#include<cstdio>
#include<algorithm>
#define debug(a) cout<<#a<<"="<<a<<endl;
using namespace std;
const int maxn=2e5+1000;
typedef long long LL;
const LL mod=998244353;
inline LL read(){LL x=0,f=1;char ch=getchar();	while (!isdigit(ch)){if (ch=='-') f=-1;ch=getchar();}while (isdigit(ch)){x=x*10+ch-48;ch=getchar();}
return x*f;}
LL a[maxn],cnt[maxn];
map<LL,LL>map1;
LL ksm(LL a,LL k){
    LL res=1;
    while(k>0){
        if(k&1) res=res*a%mod;
        k>>=1;
        a=a*a%mod;
    }return res%mod;
}
int main(void)
{
  	cin.tie(0);std::ios::sync_with_stdio(false);
    LL n;cin>>n;
    for(LL i=1;i<=n;i++) cin>>a[i];
    for(LL i=1;i<=n;i++){
        if(!map1.count(a[i])){
            map1[a[i]]=i;
        }
        else{
            cnt[map1[a[i]]+1]++;///这么处理方便一个长度区间的处理
            cnt[i+1]--;
            map1[a[i]]=i;///更新与否无所谓
        }
    }
    LL sum=0;
    for(LL i=2;i<=n;i++){
        cnt[i]+=cnt[i-1];
        if(cnt[i]==0) sum++;
    }
    cout<<ksm(2,sum%mod)%mod<<"\n";
return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值