-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA.cpp
More file actions
44 lines (36 loc) · 694 Bytes
/
A.cpp
File metadata and controls
44 lines (36 loc) · 694 Bytes
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
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
void solve()
{
int n, p, q, r, s;
cin >> n >> p >> q >> r >> s;
vector<int> a(n + 1);
for (int i = 1; i <= n; i++) {
cin >> a[i];
}
vector<int> b(a);
for (int i = p, j = r; i <= q; i++) {
b[i] = a[j++];
}
for (int i = r, j = p; i <= s; i++) {
b[i] = a[j++];
}
for (int i = 1; i <= n; i++) {
cout << b[i] << ' ';
}
}
int main()
{
#ifndef ONLINE_JUDGE
//freopen("input.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
//freopen("Error.txt", "w", stderr);
#endif
ios_base::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
int t = 1;
// cin >> t;
while (t--) solve();
return 0;
}