2020牛客暑期多校训练营(第二场)G.Greater and Greater

2020牛客暑期多校训练营(第二场)G.Greater and Greater

题目链接:https://ac.nowcoder.com/acm/contest/5667/G

题意:给定两个整形数组,问存在多少种情况满足从第i位开始,a数组的每一位都大于等于b数组。

对样例画个图,大于等于为1,小于为0
2020牛客暑期多校训练营(第二场)G.Greater and Greater_第1张图片
2020牛客暑期多校训练营(第二场)G.Greater and Greater_第2张图片
把每一位对齐之后发现只有当某一列全为1的时候才表示当位是符合的情况,那么我们可以考虑用一个bitset来与每一个串,若满足第m-1位为1则有解。

#include
using namespace std;
#define ll long long
const int maxn=2e5+100;
const ll mod=1e9+7;
int n,m,k,t;
int a[maxn];
struct ac{
    int num,id;
}b[maxn];
bool cmp(ac aa,ac bb){return aa.numc[40005],s;
int main(){
	scanf("%d%d",&n,&m);
	for(int i=1;i<=n;i++)scanf("%d",&a[i]);
	for(int i=1;i<=m;i++)scanf("%d",&b[i].num),b[i].id=i;
	sort(b+1,b+1+m,cmp);
	for(int i=1;i<=m;i++){
        c[i]=c[i-1];
        c[i][m-b[i].id]=1;
	}
    int ans=0;
    s=c[0];
    s[0]=1;
    for(int i=n;i>=1;i--){
        int l=1,r=m;
        while(l0&&a[i]=b[l+1].num)l++;
        s<<=1;
        s[0]=1;
        s&=c[l];
        if(i<=n-m+1&&s[m-1]==1)ans++;
    }
    printf("%d\n",ans);
}

你可能感兴趣的:(2020牛客暑期多校训练营(第二场)G.Greater and Greater)