当前位置:   article > 正文

3518. 进化序列(evolve)_进化-evolve脚本

进化-evolve脚本


题目:

传送门


分析:

把所有数按位去做,通过位运算得出每位上 1 1 1的个数
然后再疯狂暴力判断是否符合条件,是就累加答案


代码:

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring> 
#include<cstdlib>
#include<algorithm>
#include<set>
#include<queue>
#include<vector>
#include<map>
#include<list>
#include<ctime>
#include<iomanip>
#include<string>
#include<bitset>
#include<deque>
#include<set>
#define LL long long
#define ch cheap
using namespace std;
inline LL read() {
    LL d=0,f=1;char s=getchar();
    while(s<'0'||s>'9'){if(s=='-')f=-1;s=getchar();}
    while(s>='0'&&s<='9'){d=d*10+s-'0';s=getchar();}
    return d*f;
}
LL a[100005],ans,v[35];
int main()
{
	freopen("evolve.in","r",stdin);
	freopen("evolve.out","w",stdout);
	LL n=read(),m=read();
	for(LL i=1;i<=n;i++) a[i]=read();
	LL last=1;
	for(LL i=1;i<=n;i++)
	{
		LL z=0;
		for(LL j=0;j<=30;j++)
		  v[j]+=(a[i]>>j)&1,z+=(v[j]!=0)<<j;
		while(z>=m&&last<i)
		{
			z=0;
			for(LL j=0;j<=30;j++)
			  v[j]-=(a[last]>>j)&1,z+=(v[j]!=0)<<j;
			last++;
		}
		ans+=i-last;
	}
	cout<<ans;
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/68320
推荐阅读
相关标签
  

闽ICP备14008679号