https://www.acmicpc.net/problem/12891
* 풀이
- n = 1백만
- O(n) 풀이 필요
- 슬라이딩 윈도우
- ==
- 구간(m)을 유지갱신 하면서
- map에 < 문자, 카운팅 > 저장
- 각 구간마다 적은게있는지 검사
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll n,m,ret;
string str;
vector<int> v;
map<char,int> mp;
int a,b,c,d;
int check() {
if(mp['A'] < a) return 0;
if(mp['C'] < b) return 0;
if(mp['G'] < c) return 0;
if(mp['T'] < d) return 0;
return 1;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin>>n>>m>>str;
cin>>a>>b>>c>>d;
int s=0;
int e=0; //안포함
for(int i=0;i<m;++i) {
mp[str[i]]++;
e++;
}
while(e<=n) {
if(check()) {
ret++;
}
mp[str[s++]]--;
mp[str[e++]]++;
}
cout<<ret;
return 0;
}
'Algorithm > 슬라이딩 윈도우' 카테고리의 다른 글
[알고리즘] 백준 11003 최솟값 찾기 // 슬라이딩 윈도우, 덱 (0) | 2024.12.27 |
---|---|
리트코드 3. 반복되는 문자가 없는 가장 긴 부분 문자열 c++ // 슬라이딩 윈도우 (0) | 2024.06.21 |
백준 2096 내려가기 c++ // dp도안되면? 슬라이딩 윈도우 (0) | 2024.05.12 |