307640: CF1388A. Captain Flint and Crew Recruitment
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Captain Flint and Crew Recruitment
题意翻译
### 题目描述 如果一个正整数能写成两个不同质数的积,那么我们称它为类质数。 给定一个自然数 $n$,请问是否能将 $n$ 写成四个**互不相同**的正整数的和,并满足这四个正整数中**至少**有三个是类质数。如果能,请给出一种方案。 ### 输入格式 **本题包含多组测试数据。** 第一行包含一个整数 $T$ $(1 \le T \le 1000)$,表示数据组数。 接下来 $T$ 行每行一个整数 $n(1 \le n \le 2\times10^5)$。 **输出格式** 对于每组数据,若不能被分解成满足要求的四个正整数,单独输出一行 `NO`。 否则第一行输出 `YES`,第二行输出以单个空格分隔的四个正整数,表示一种可行方案。 Translated by [cmll02](https://www.luogu.com.cn/user/171487)题目描述
Despite his bad reputation, Captain Flint is a friendly person (at least, friendly to animals). Now Captain Flint is searching worthy sailors to join his new crew (solely for peaceful purposes). A sailor is considered as worthy if he can solve Flint's task. Recently, out of blue Captain Flint has been interested in math and even defined a new class of integers. Let's define a positive integer $ x $ as nearly prime if it can be represented as $ p \cdot q $ , where $ 1 < p < q $ and $ p $ and $ q $ are prime numbers. For example, integers $ 6 $ and $ 10 $ are nearly primes (since $ 2 \cdot 3 = 6 $ and $ 2 \cdot 5 = 10 $ ), but integers $ 1 $ , $ 3 $ , $ 4 $ , $ 16 $ , $ 17 $ or $ 44 $ are not. Captain Flint guessed an integer $ n $ and asked you: can you represent it as the sum of $ 4 $ different positive integers where at least $ 3 $ of them should be nearly prime. Uncle Bogdan easily solved the task and joined the crew. Can you do the same?输入输出格式
输入格式
The first line contains a single integer $ t $ ( $ 1 \le t \le 1000 $ ) — the number of test cases. Next $ t $ lines contain test cases — one per line. The first and only line of each test case contains the single integer $ n $ $ (1 \le n \le 2 \cdot 10^5) $ — the number Flint guessed.
输出格式
For each test case print: - YES and $ 4 $ different positive integers such that at least $ 3 $ of them are nearly prime and their sum is equal to $ n $ (if there are multiple answers print any of them); - NO if there is no way to represent $ n $ as the sum of $ 4 $ different positive integers where at least $ 3 $ of them are nearly prime. You can print each character of YES or NO in any case.
输入输出样例
输入样例 #1
7
7
23
31
36
44
100
258
输出样例 #1
NO
NO
YES
14 10 6 1
YES
5 6 10 15
YES
6 7 10 21
YES
2 10 33 55
YES
10 21 221 6