하나 이상의 연속된 소수로 입력받은 n을 나타낼 수 있는 경우의 수를 찾는 문제이다.
n이 최대 400만까지이므로 O(n) 알고리즘을 사용해야하며 1차원 배열에서 두개의 포인터를 조작하여 결과를 얻을 수 있는 투포인터 알고리즘을 사용하면 된다.
https://butter-shower.tistory.com/226
https://m.blog.naver.com/kks227/220795165570
#include <bits/stdc++.h>
using namespace std;
#define SIZE 4000002
bool p_list[SIZE];
vector<int> V;
// 에라토스테네스의 체로 소수 구하기
void prime()
{
for (int i = 2; i < SIZE; ++i)
p_list[i] = 1;
for (int i = 2; i < SIZE; ++i) {
if (p_list)
{
for (int j = 2 * i; j < SIZE; j += i)
p_list[j] = 0;
}
}
for (int i = 2; i <= SIZE; ++i)
if (p_list[i])
V.push_back(i);
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
prime();
int n;
cin >> n;
int s = 0, e = 0, res = 0, sum = 0;
while (true)
{
if (sum >= n) sum -= V[s++];
else if (e == V.size()) break;
else sum += V[e++];
if (sum == n) res++;
}
cout << res << '\n';
}