-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathByte_Sequence.cpp
More file actions
54 lines (50 loc) · 1.17 KB
/
Byte_Sequence.cpp
File metadata and controls
54 lines (50 loc) · 1.17 KB
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
#pragma GCC optimize("O2")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
// Global setup for fast I/O
struct FastIO
{
FastIO()
{
ios_base::sync_with_stdio(false); // Disable C I/O synchronization
cin.tie(nullptr); // Untie cin and cout for faster input/output
}
} fast_io_setup; // This will be executed before main()
int main()
{
ll testcases;
cin >> testcases;
for (ll testcase = 0; testcase < testcases; testcase++)
{
ll n;
cin >> n;
if (n == 3)
{
cout << "2 1 3" << "\n";
}
else if (n == 2)
{
cout << "2 2" << "\n";
}
else
{
if (n % 2 == 0)
{
for (ll i = 1; i <= n - 2; i++)
{
cout << 1 << " ";
}
cout << n - (n - 2) << " ";
cout << n << "\n";
}
else{
for (ll i = 1; i <= n - 3; i++){
cout << 1 << " ";
}
cout << "2 1" << " ";
cout << n << "\n";
}
}
}
}