Two Prime whose Sum is given number

Given an even number (greater than 2), return two prime numbers whose sum will be equal to the given number.

A solution will always exist. 

Input: 4
Output: 2 + 2 = 4

Example:

Input: N=20
Output: 3 17

Approach

C++

#include <bits/stdc++.h>
using namespace std;

vector<intallPrimes(int N)
{
    vector<intarr(N+1,0);
    arr[0] = 0;
    arr[1] = 0;
    for (int i = 2i <= Ni++)
    {
        arr[i] = 1;
    }
    for (int i = 2i <= sqrt(N); i++)
    {
        if (arr[i])
        {
            for (int j = i * ij <= Nj = j + i)
            {
                arr[j] = 0;
            }
        }
    }
    return arr;
}
int main()
{
    int N = 20;
    vector<intarr(N+1);
    arr = allPrimes(N);
    for (int i = 2i <= Ni++)
    {
        if (arr[i] && arr[N - i])
        {
            cout << i << " " << N - i << endl;
        }
    }
    return 0;
}


No comments:

Post a Comment