-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sqrt_decomposition.c
82 lines (57 loc) · 1002 Bytes
/
Sqrt_decomposition.c
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
#include <stdio.h>
void update(int p,int x,int A[],int B[],int K)
{
B[p/K]=B[p/K]-A[p]+x;
A[p]=x;
}
int query(int l,int r,int A[],int B[],int K)
{
int x=l;
int sum=0;
while((x%K)&&(x<=r))
sum+=A[x++];
while((x+K-1)<=r)
{
sum+=B[x/K];
x+=K;
}
while(x<=r)
sum+=A[x++];
return sum;
}
int main()
{
int N=16; // setting array size
int K=4; // setting bucket size
int A[N];
int B[K];
int i;
for(i=0;i<N;i++)
A[i]=0;
for(i=0;i<K;i++)
B[i]=0;
update(0,1,A,B,K);
update(1,2,A,B,K);
update(2,0,A,B,K);
update(3,7,A,B,K);
update(4,4,A,B,K);
update(5,2,A,B,K);
update(6,2,A,B,K);
update(7,0,A,B,K);
update(8,1,A,B,K);
update(9,3,A,B,K);
update(10,1,A,B,K);
update(11,4,A,B,K);
update(12,5,A,B,K);
update(13,2,A,B,K);
update(14,0,A,B,K);
update(15,1,A,B,K);
for(i=0;i<N;i++)
printf("%d\t",A[i]);
printf("\n");
for(i=0;i<K;i++)
printf("%d\t",B[i]);
printf("\n");
update(6,5,A,B,K);
printf("query ( 2,14) : %d\n",query(2,14,A,B,K));
}