codeforces 584D Dima and Lisa

來源:互聯網
上載者:User

Dima loves representing an odd number as the sum of multiple primes, and Lisa loves it when there are at most three primes. Help them to represent the given number as the sum of at most than three primes.

More formally, you are given an odd numer n. Find a set of numbers pi (1 ≤ i ≤ k), such that 1 ≤ k ≤ 3 pi is a prime

The numbers pi do not necessarily have to be distinct. It is guaranteed that at least one possible solution exists.
Input

The single line contains an odd number n (3 ≤ n < 109).
Output

In the first line print k (1 ≤ k ≤ 3), showing how many numbers are in the representation you found.

In the second line print numbers pi in any order. If there are multiple possible solutions, you can print any of them.
Sample test(s)
Input

27

Output

3
5 11 11

Note

A prime is an integer strictly larger than one that is divisible only by one and by itself. 題目大意:將一個奇數拆成1致3個質數。 解題思路:暴力。

#include <cstdio>#include <cstring>#include <algorithm>#include <cmath>#include <cstdlib>using namespace std;typedef long long ll;bool isPrime(int num) {    for (int i = 2; i <= sqrt(num); i++) {        if (num % i == 0) return 0;     }    return 1;}int main() {    int n;    scanf("%d", &n);    if (isPrime(n)) {        printf("1\n%d\n", n);       } else if (isPrime(n - 2)) {        printf("2\n%d 2\n", n - 2);     } else if (isPrime(n - 4)) {        printf("3\n%d 2 2\n", n - 4);       } else {        for (int i = 3; i <= n; i += 2) {            int m = n - i;              for (int j = 3; j < m; j += 2) {                if (isPrime(m - j) && isPrime(j) && isPrime(i)) {                    printf("3\n%d %d %d\n", m - j, j, i);                       return 0;                }               }        }    }    return 0;}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.