Codeforces 584 D. Dima and Lisa ( Codeforces Round #324 (Div. 2))

D. Dima and Lisa

time limit per test
1 second

memory limit per test
256 megabytes

input
standard input

output
standard output

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. 1 ≤ k ≤ 3
  2. 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.

题目大意:

就是给定一个数 m ,让你将其化为 <=3 个数的素数之和,

然后输出几个数 k, 和相应的素数

解题思路:

根据歌德巴赫猜想,可以推断出

任一大于2的偶数都可写成两个质数之和。

任一大于7的奇数都可写成三个素数之和。

然后再进行一下剪枝,

1)如果 m 是素数,那么输出 1  m

2)如果 m-2 是素数,那么输出的是2   2   m-2 

3)否则的话就是两个循环搞定(其实当时我以为是TLE的,但是竟然没有,嘿嘿~~)

上代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <vector>
#include <queue>
#include <algorithm>
#include <set>
using namespace std;

#define MM(a) memset(a,0,sizeof(a))

typedef long long LL;
typedef unsigned long long ULL;
const int maxn = 50+5;
const int mod = 1000000007;
const double eps = 1e-7;

bool isprime(int x)
{
    if(x == 1)
        return false;
    for(int i=2; i*i<=x; i++)
        if(x%i == 0)
        return false;
    return true;
}
/**
任一大于2的偶数都可写成两个质数之和。

任一大于7的奇数都可写成三个素数之和。
**/
int main()
{
    int m;
    cin>>m;
    if(isprime(m))
        cout<<1<<endl<<m<<endl;
    else if(isprime(m-2))
    cout<<2<<endl<<2<<" "<<m-2<<endl;
    else
    {
        puts("3");
        bool ok = false;
        for(int i=3; i<=m; i+=2)
        {
            if(ok)
                break;
            for(int j=3; j<=m; j+=2)
            {
                if(isprime(i) && isprime(j) && isprime(m-i-j))
                {
                    ok = true;
                    cout<<i<<" "<<j<<" "<<m-i-j<<endl;
                    break;
                }
            }
        }
    }
    return 0;
}
时间: 2024-09-19 02:03:34

Codeforces 584 D. Dima and Lisa ( Codeforces Round #324 (Div. 2))的相关文章

Codeforces 584 B. Kolya and Tanya (Codeforces Round #324 (Div. 2))

B. Kolya and Tanya time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Kolya loves putting gnomes at the circle table and giving them coins, and Tanya loves studying triplets of gnomes, sitting

Codeforces 584 A. Olesya and Rodion(Codeforces Round #324 (Div. 2))

A. Olesya and Rodion time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Olesya loves numbers consisting of n digits, and Rodion only likes numbers that are divisible by t. Find some number tha

Codeforces 584 C. Marina and Vasya (Codeforces Round #324 (Div. 2))

C. Marina and Vasya time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Marina loves strings of the same length and Vasya loves when there is a third string, different from them in exactly t ch

Codeforces Round #157 (Div. 1) C. Little Elephant and LCM (数学、dp)

C. Little Elephant and LCM time limit per test 4 seconds memory limit per test 256 megabytes input standard input output standard output The Little Elephant loves the LCM (least common multiple) operation of a non-empty set of positive integers. The

HDU 5651 xiaoxin juju needs help(BestCoder Round #77 (div.1)1001)

传送门 xiaoxin juju needs help Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 861    Accepted Submission(s): 243 Problem Description As we all known, xiaoxin is a brilliant coder. He knew **palin

hdu 5563 Clarke and five-pointed star 【BestCoder Round #62 (div.2) 1002】

Click here ~~ Clarke and five-pointed star Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 242    Accepted Submission(s): 144 Problem Description Clarke is a patient with multiple personality d

hdu 5464 Clarke and problem (BestCoder Round #56 (div.2))

Clarke and problem Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 350    Accepted Submission(s): 151 Problem Description Clarke is a patient with multiple personality disorder. One day, Clarke

hdu 5523 Game 【BestCoder Round #61 (div.2)】

Game Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 315    Accepted Submission(s): 126 Problem Description XY is playing a game:there are N pillar in a row,which numbered from 1 to n.Each pi

Codeforces Round #205 (Div. 2) / 353C Find Maximum (贪心)

Valera has array a, consisting of n integers a0,a1,...,an-1, and function f(x), taking an integer from 0 to 2n-1 as its single argument. Value f(x) is calculated by formula , where value bit(i) equals one if the binary representation of number xconta