-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1352B Same Parity Summands.cpp
60 lines (57 loc) · 1.37 KB
/
1352B Same Parity Summands.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
author : MishkatIT
created : Sunday 2022-11-27-19.20.23
problem : 1352 B. Same Parity Summands
*/
#include<iostream>
#define fio ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
using namespace std;
int main()
{
fio;
int t;
cin >> t;
while(t--)
{
int n, k;
cin >> n >> k;
if(n < k)
cout << "NO" << '\n';
else if(n == k)
{
cout << "YES" << '\n';
for (int i = 0; i < n; i++)
cout << 1 << ' ';
cout << '\n';
}
else if((n & 1) && (k & 1))
{
cout << "YES" << '\n';
for (int i = 0; i < k - 1; i++)
cout << 1 << ' ';
cout << n - k + 1 << '\n';
}
else if((n & 1) && !(k & 1))
cout << "NO" << '\n';
else if(!(n & 1) && !(k & 1))
{
cout << "YES" << '\n';
for (int i = 0; i < (k - 1); i++)
cout << 1 << ' ';
cout << n - k + 1 << '\n';
}
else
{
if(n < (2 * k))
cout << "NO" << '\n';
else
{
cout << "YES" << '\n';
for (int i = 0; i < (k - 1); i++)
cout << 2 << ' ';
cout << n - (k - 1) * 2 << '\n';
}
}
}
return 0;
}