-
Notifications
You must be signed in to change notification settings - Fork 0
/
P14648.cpp
52 lines (38 loc) · 954 Bytes
/
P14648.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
#include <iostream>
using namespace std;
typedef long long ll;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int arr[1001] = {};
int n, q;
cin >> n >> q;
for(int i = 1; i <= n; i++) {
cin >> arr[i];
}
for(int i = 0; i < q; i++) {
int type;
cin >> type;
if(type == 1) {
ll a, b, sum = 0;
cin >> a >> b;
for(int i = a; i <= b; i++) {
sum += arr[i];
}
cout << sum << "\n";
swap(arr[a], arr[b]);
} else if(type == 2) {
ll a, b, c, d, sum = 0, sum2 = 0;
cin >> a >> b >> c >> d;
for(int i = a; i <= b; i++) {
sum += arr[i];
}
for(int i = c; i <= d; i++) {
sum2 += arr[i];
}
cout << sum - sum2 << "\n";
}
}
return 0;
}