-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSQRT Decomposition.cpp
187 lines (164 loc) · 3.43 KB
/
SQRT Decomposition.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
// LightOJ 1135
// Rafat's Code
#include <bits/stdc++.h>
using namespace std;
typedef int ll;
typedef pair <ll, ll> pll;
const int Max = 2e6 + 10;
const int Mod = 1e9 + 7;
ll BLOCK[1001];
ll ONE[1001];
ll TWO[1001];
ll prop[1001];
ll BLOCK_SIZE,n;
ll ar[100001];
ll getID(ll idx) // get the block number for idx position
{
ll id = idx / BLOCK_SIZE;
return id;
}
ll calc()
{
for(int i = 1; i < 1000; i++) // initializing the blocks as per statement
{
BLOCK[i] = BLOCK_SIZE;
if(i*BLOCK_SIZE>n)
{
BLOCK[i]=n-((i-1)*BLOCK_SIZE);
}
}
}
ll query(int l, int r)
{
int lf = getID(l);
int rt = getID(r);
ll ret = 0;
if(lf == rt)
{
for(int i = l; i <= r; i++)
{
if((ar[i]+prop[lf])%3==0)
ret++;
}
return ret;
}
for(int i = l; i < (lf + 1) * BLOCK_SIZE; i++)
{
if((ar[i]+prop[lf])%3==0)
ret++;
//cout<<"dus "<<ret<<endl;
}
for(int i = lf + 1; i < rt; i++)
{
if(prop[i]%3==0)
ret += BLOCK[i];
else if(prop[i]%3==2)
ret += ONE[i];
else
ret += TWO[i];
}
for(int i = rt * BLOCK_SIZE; i <= r; i++)
{
if((ar[i]+prop[rt])%3==0)
ret++;
}
return ret;
}
void update(int l, int r)
{
int lf = getID(l);
int rt = getID(r);
//ll ret = 0;
if(lf == rt) // same block e L, R porle linear calculation
{
for(int i = l; i <= r; i++)
{
if(ar[i]%3==0)
{
BLOCK[lf]--;
ONE[lf]++;
}
else if(ar[i]%3==1)
{
ONE[lf]--;
TWO[lf]++;
}
else if(ar[i]%3==2)
{
BLOCK[lf]++;
TWO[lf]--;
}
ar[i]+=1;
}
return;
}
for(int i = l; i < (lf + 1) * BLOCK_SIZE; i++) // first block er fraction calculation
{
if(ar[i]%3==0)
{
BLOCK[lf]--;
ONE[lf]++;
}
else if(ar[i]%3==1)
{
ONE[lf]--;
TWO[lf]++;
}
else if(ar[i]%3==2)
{
BLOCK[lf]++;
TWO[lf]--;
}
ar[i]+=1;
}
for(int i = lf + 1; i < rt; i++) // majer all blocks er calculation
{
prop[i]+=1;
}
for(int i = rt * BLOCK_SIZE; i <= r; i++) // last block er fraction calculation
{
if(ar[i]%3==0)
{
BLOCK[rt]--;
ONE[rt]++;
}
else if(ar[i]%3==1)
{
ONE[rt]--;
TWO[rt]++;
}
else if(ar[i]%3==2)
{
BLOCK[rt]++;
TWO[rt]--;
}
ar[i]+=1;
}
}
int main()
{
int q, l, r, t, type;
scanf("%d",&t);
for(int cs=1; cs<=t; cs++)
{
printf("Case %d:\n",cs);
memset(BLOCK,0,sizeof(BLOCK));
memset(ONE,0,sizeof(ONE));
memset(TWO,0,sizeof(TWO));
memset(prop,0,sizeof(prop));
memset(ar,0,sizeof(ar));
scanf("%d %d", &n, &q);
BLOCK_SIZE=sqrt(n)+1;
calc();
for(int i = 1; i <= q; i++)
{
scanf("%d %d %d", &type, &l, &r);
l++,r++;
if(type==0)
update(l,r);
else
printf("%d\n",query(l,r));
}
}
return 0;
}