其他分享
首页 > 其他分享> > ABC222 D - Between Two Arrays(dp,差分优化)

ABC222 D - Between Two Arrays(dp,差分优化)

作者:互联网

题意:

在这里插入图片描述

解法:

d[i][j]表示前i个数,c[]末尾为j的方案数.
设l=a[i],r=b[i].
发现每次转移需要将d[i][j]加到d[i+1][]的一个区间,
那么复杂度就变成O(n^3)的了.

但是由于是连续区间,所以可以用差分优化以下,
复杂度就降为O(n^2)了

code:

#include<bits/stdc++.h>
// #define MULTI_CASE
#define SYNC_OFF
#define PI pair<int,int>
#define ll long long
#define int long long
using namespace std;
const int mod=998244353;
// const int mod=1e9+7;
const int maxm=3e3+5;
int d[maxm][maxm];
int temp[maxm];
int a[maxm];
int b[maxm];
int n;
void solve(){
    cin>>n;
    for(int i=1;i<=n;i++){
        cin>>a[i];
    }
    for(int i=1;i<=n;i++){
        cin>>b[i];
    }
    //dp[i][j]表示前i个数,末尾为j的方案数
    d[0][0]=1;
    for(int i=0;i<n;i++){
        for(int j=0;j<=3e3;j++){
            temp[j]=0;
        }
        int l=a[i+1],r=b[i+1];
        for(int j=0;j<=3e3;j++){
            if(!d[i][j])continue;
            if(j<l){
                temp[l]=(temp[l]+d[i][j])%mod;
                temp[r+1]=(temp[r+1]-d[i][j])%mod;
            }else if(j<=r){
                temp[j]=(temp[j]+d[i][j])%mod;
                temp[r+1]=(temp[r+1]-d[i][j])%mod;
            }
        }
        for(int j=0;j<=3e3;j++){
            temp[j+1]=(temp[j+1]+temp[j])%mod;
            d[i+1][j]=temp[j];
        }
    }
    int ans=0;
    for(int i=0;i<=3e3;i++){
        ans=(ans+d[n][i])%mod;
    }
    ans=(ans%mod+mod)%mod;
    cout<<ans<<endl;
}
void Main(){
    #ifdef MULTI_CASE
    int T;cin>>T;while(T--)
    #endif
    solve();
}
void Init(){
    #ifdef SYNC_OFF
    ios::sync_with_stdio(0);cin.tie(0);
    #endif
    #ifndef ONLINE_JUDGE
    freopen("../in.txt","r",stdin);
    freopen("../out.txt","w",stdout);
    #endif
}
signed main(){
    Init();
    Main();
    return 0;
}

标签:temp,Arrays,maxm,Two,cin,int,Between,define,mod
来源: https://blog.csdn.net/weixin_44178736/article/details/120784204