forked from itsprueba/Hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 2
/
prefixSums.cpp
67 lines (61 loc) · 1.11 KB
/
prefixSums.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
59
60
61
62
63
64
65
66
67
#include <bits/stdc++.h>
using namespace std;
void solve()
{
int n;
cin>>n;
if(n==1 || n%4!=0)
{
cout<<"NO\n";
}
else
{
int i,j;
i=1;
j=n;
int cnt=0;
vector<int> v1;
while(cnt<n/2)
{
v1.push_back(i);
v1.push_back(j);
i=i+2;
j=j-2;
cnt=cnt+2;
}
vector<int> v2;
i=2;
j=n-1;
cnt=0;
while(cnt<n/2)
{
v2.push_back(i);
v2.push_back(j);
i=i+2;
j=j-2;
cnt=cnt+2;
}
sort(v1.begin(),v1.end());
sort(v2.begin(),v2.end());
cout<<"YES\n";
for(int i=0;i<v1.size();i++)
{
cout<<v1[i]<<" ";
}
cout<<endl;
for(int i=0;i<v2.size();i++)
{
cout<<v2[i]<<" ";
}
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tt;
cin>>tt;
while(tt--)
solve();
return 0;
}