codeforces 992D. Nastya and a Game [사유]

953 단어 codeforces
https://blog.csdn.net/Haipai1998/article/details/80740649
Nastya and a Game
제목:Arr[n]을 지정하고multipul[L,R]/sum[L,R]==k의 구간 개수를 만족시키기
사고방식: a[i]==1의 경우 multipul에 영향을 주지 않고 L, R에만 영향을 미친다.그러면 연속된 구간 1에 대해서sum[L,R]∈[sum/multiple,sum/multiple+lenof[1]만 뛸 수 있다.데이터에 따르면 멀티플렉스는 2e18을 초과하지 않습니다.그러면 상기 방법에 따라 매번 곱하는 수가 ≥2이기 때문에 2층while순환의 횟수는 61회를 초과하지 않는다.복잡성은 O(60*n)
int N,K;
ll A[202020];
ll S[202020];
int nex[202020];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>K;
	FOR(i,N) cin>>A[i];
	x=N;
	for(i=N-1;i>=0;i--) {
		nex[i]=x;
		if(A[i]!=1) x=i;
	}
	
	ll ret=0;
	FOR(i,N) {
		int R=i;
		ll p=1;
		ll s=0;
		while(R3e18) break;
			p*=A[R];
			s+=A[R];
			int add=nex[R]-R-1;
            ///    if         1    (    )         a       
			if(p%K==0) {
				if(s*K<=p && p<=(s+add)*K) ret++;
			}
			
			s+=add;
			R=nex[R];
		}
	}
	
	
	cout<

좋은 웹페이지 즐겨찾기