-
Notifications
You must be signed in to change notification settings - Fork 2
/
relocation.cpp
55 lines (48 loc) · 958 Bytes
/
relocation.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
#define _USE_MATH_DEFINES
#include <iostream>
#include <stdio.h>
#include <cmath>
#include <iomanip>
#include <vector>
#include <string>
#include <algorithm>
#include <unordered_set>
#include <ctype.h>
#include <queue>
#include <map>
#include <set>
#include <unordered_set>
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
using namespace std;
int main()
{
ll i, j, k;
ll n, q;
map < ll, ll > locations; //<company, location>
ll temp;
ll comp, newLoc;
ll op;
cin >> n >> q;
for (i = 0; i < n; i++)
{
cin >> temp;
locations[i + 1] = temp;
}
for (i = 0; i < q; i++)
{
cin >> op;
if (op == 1)
{
cin >> comp >> newLoc;
locations[comp] = newLoc;
}
else
{
cin >> temp >> newLoc;
cout << abs(locations[temp] - locations[newLoc]) << "\n";
}
}
return 0;
}