-
Notifications
You must be signed in to change notification settings - Fork 0
/
SegmentTree.cpp
executable file
·84 lines (67 loc) · 1.67 KB
/
SegmentTree.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include <bits/stdc++.h>
using namespace std;
int arr[100005];
int st[4 * 100005];
int n, update, indice, valor, a;
int nulo = INT_MAX;
int Merge(int a, int b)
{
return min(a, b);
}
void Build(int node, int inicio, int fin)
{
if(inicio == fin)
st[node] = arr[inicio];
else
{
int medio = (inicio + fin) / 2;
Build(node * 2, inicio, medio);
Build(node * 2 + 1, medio + 1, fin);
st[node] = Merge(st[2 * node], st[2 * node + 1]);
}
}
void Update(int node, int inicio, int fin, int indice, int valor)
{
if(inicio == fin && inicio == indice)
{
st[node] = valor;
arr[inicio] = valor;
}
else
{
int medio = (inicio + fin) / 2;
if (indice <= medio)
Update(2 * node, inicio, medio, indice, valor);
else
Update(2 * node + 1, medio + 1, fin, indice, valor);
st[node] = Merge(st[2 * node], st[2 * node + 1]);
}
}
int Query(int node, int inicio, int fin, int i, int j)
{
if (fin < i || inicio > j)
return nulo;
if (inicio >= i && fin <= j)
return st[node];
int medio = (inicio + fin) / 2;
int l = Query(2 * node, inicio, medio, i, j);
int r = Query(2 * node + 1, medio + 1, fin, i, j);
return Merge(l, r);
}
int main()
{
cin >> n;
for(int i = 0; i < n; i++)
{
cin >> a;
arr[i] = a;
}
Build(1, 0, n - 1);
cin >> update;
while(update--)
{
cin >> indice >> valor;
Update(1, 0, n - 1, indice - 1, valor);
cout << Query(1, 0, n - 1, 0, n - 1) << endl;
}
}