@@ -101,12 +101,16 @@ class Solution {
101
101
public:
102
102
vector<int > getModifiedArray(int length, vector<vector<int >>& updates) {
103
103
vector<int > d(length);
104
- for (auto& e : updates) {
104
+ for (const auto& e : updates) {
105
105
int l = e[ 0] , r = e[ 1] , c = e[ 2] ;
106
106
d[ l] += c;
107
- if (r + 1 < length) d[ r + 1] -= c;
107
+ if (r + 1 < length) {
108
+ d[ r + 1] -= c;
109
+ }
110
+ }
111
+ for (int i = 1; i < length; ++i) {
112
+ d[ i] += d[ i - 1] ;
108
113
}
109
- for (int i = 1; i < length; ++i) d[ i] += d[ i - 1] ;
110
114
return d;
111
115
}
112
116
};
@@ -131,6 +135,24 @@ func getModifiedArray(length int, updates [][]int) []int {
131
135
}
132
136
```
133
137
138
+ #### TypeScript
139
+
140
+ ``` ts
141
+ function getModifiedArray(length : number , updates : number [][]): number [] {
142
+ const d: number [] = Array (length ).fill (0 );
143
+ for (const [l, r, c] of updates ) {
144
+ d [l ] += c ;
145
+ if (r + 1 < length ) {
146
+ d [r + 1 ] -= c ;
147
+ }
148
+ }
149
+ for (let i = 1 ; i < length ; ++ i ) {
150
+ d [i ] += d [i - 1 ];
151
+ }
152
+ return d ;
153
+ }
154
+ ```
155
+
134
156
#### JavaScript
135
157
136
158
``` js
@@ -140,7 +162,7 @@ func getModifiedArray(length int, updates [][]int) []int {
140
162
* @return {number[]}
141
163
*/
142
164
var getModifiedArray = function (length , updates ) {
143
- const d = new Array (length).fill (0 );
165
+ const d = Array (length).fill (0 );
144
166
for (const [l , r , c ] of updates) {
145
167
d[l] += c;
146
168
if (r + 1 < length) {
@@ -177,82 +199,74 @@ var getModifiedArray = function (length, updates) {
177
199
178
200
``` python
179
201
class BinaryIndexedTree :
180
- def __init__ (self , n ):
202
+ __slots__ = " n" , " c"
203
+
204
+ def __init__ (self , n : int ):
181
205
self .n = n
182
206
self .c = [0 ] * (n + 1 )
183
207
184
- @ staticmethod
185
- def lowbit (x ):
186
- return x & - x
187
-
188
- def update (self , x , delta ):
208
+ def update (self , x : int , delta : int ) -> None :
189
209
while x <= self .n:
190
210
self .c[x] += delta
191
- x += BinaryIndexedTree.lowbit(x)
211
+ x += x & - x
192
212
193
- def query (self , x ) :
213
+ def query (self , x : int ) -> int :
194
214
s = 0
195
215
while x:
196
216
s += self .c[x]
197
- x -= BinaryIndexedTree.lowbit(x)
217
+ x -= x & - x
198
218
return s
199
219
200
220
201
221
class Solution :
202
222
def getModifiedArray (self , length : int , updates : List[List[int ]]) -> List[int ]:
203
223
tree = BinaryIndexedTree(length)
204
- for start, end, inc in updates:
205
- tree.update(start + 1 , inc )
206
- tree.update(end + 2 , - inc )
224
+ for l, r, c in updates:
225
+ tree.update(l + 1 , c )
226
+ tree.update(r + 2 , - c )
207
227
return [tree.query(i + 1 ) for i in range (length)]
208
228
```
209
229
210
230
#### Java
211
231
212
232
``` java
213
- class Solution {
214
- public int [] getModifiedArray (int length , int [][] updates ) {
215
- BinaryIndexedTree tree = new BinaryIndexedTree (length);
216
- for (int [] e : updates) {
217
- int start = e[0 ], end = e[1 ], inc = e[2 ];
218
- tree. update(start + 1 , inc);
219
- tree. update(end + 2 , - inc);
220
- }
221
- int [] ans = new int [length];
222
- for (int i = 0 ; i < length; ++ i) {
223
- ans[i] = tree. query(i + 1 );
224
- }
225
- return ans;
226
- }
227
- }
228
-
229
233
class BinaryIndexedTree {
230
234
private int n;
231
235
private int [] c;
232
236
233
237
public BinaryIndexedTree (int n ) {
234
238
this . n = n;
235
- c = new int [n + 1 ];
239
+ this . c = new int [n + 1 ];
236
240
}
237
241
238
242
public void update (int x , int delta ) {
239
- while ( x <= n) {
243
+ for (; x <= n; x += x & - x ) {
240
244
c[x] += delta;
241
- x += lowbit(x);
242
245
}
243
246
}
244
247
245
248
public int query (int x ) {
246
249
int s = 0 ;
247
- while ( x > 0 ) {
250
+ for (; x > 0 ; x -= x & - x ) {
248
251
s += c[x];
249
- x -= lowbit(x);
250
252
}
251
253
return s;
252
254
}
255
+ }
253
256
254
- public static int lowbit (int x ) {
255
- return x & - x;
257
+ class Solution {
258
+ public int [] getModifiedArray (int length , int [][] updates ) {
259
+ var tree = new BinaryIndexedTree (length);
260
+ for (var e : updates) {
261
+ int l = e[0 ], r = e[1 ], c = e[2 ];
262
+ tree. update(l + 1 , c);
263
+ tree. update(r + 2 , - c);
264
+ }
265
+ int [] ans = new int [length];
266
+ for (int i = 0 ; i < length; ++ i) {
267
+ ans[i] = tree. query(i + 1 );
268
+ }
269
+ return ans;
256
270
}
257
271
}
258
272
```
@@ -261,46 +275,43 @@ class BinaryIndexedTree {
261
275
262
276
``` cpp
263
277
class BinaryIndexedTree {
264
- public :
278
+ private :
265
279
int n;
266
280
vector<int > c;
267
281
268
- BinaryIndexedTree(int _n)
269
- : n(_n)
270
- , c(_n + 1) {}
282
+ public:
283
+ BinaryIndexedTree(int n)
284
+ : n(n)
285
+ , c(n + 1) {}
271
286
272
287
void update(int x, int delta) {
273
- while ( x <= n) {
288
+ for (; x <= n; x += x & -x ) {
274
289
c[x] += delta;
275
- x += lowbit(x);
276
290
}
277
291
}
278
292
279
293
int query (int x) {
280
294
int s = 0;
281
- while ( x > 0) {
295
+ for (; x > 0; x -= x & -x ) {
282
296
s += c[ x] ;
283
- x -= lowbit(x);
284
297
}
285
298
return s;
286
299
}
287
-
288
- int lowbit(int x) {
289
- return x & -x;
290
- }
291
300
};
292
301
293
302
class Solution {
294
303
public:
295
304
vector<int > getModifiedArray(int length, vector<vector<int >>& updates) {
296
305
BinaryIndexedTree* tree = new BinaryIndexedTree(length);
297
- for (auto& e : updates) {
298
- int start = e[ 0] , end = e[ 1] , inc = e[ 2] ;
299
- tree->update(start + 1, inc );
300
- tree->update(end + 2, -inc );
306
+ for (const auto& e : updates) {
307
+ int l = e[ 0] , r = e[ 1] , c = e[ 2] ;
308
+ tree->update(l + 1, c );
309
+ tree->update(r + 2, -c );
301
310
}
302
311
vector<int > ans;
303
- for (int i = 0; i < length; ++i) ans.push_back(tree->query(i + 1));
312
+ for (int i = 0; i < length; ++i) {
313
+ ans.push_back(tree->query(i + 1));
314
+ }
304
315
return ans;
305
316
}
306
317
};
@@ -314,46 +325,116 @@ type BinaryIndexedTree struct {
314
325
c []int
315
326
}
316
327
317
- func newBinaryIndexedTree(n int) *BinaryIndexedTree {
318
- c := make([]int, n+1)
319
- return &BinaryIndexedTree{n, c}
328
+ func NewBinaryIndexedTree(n int) *BinaryIndexedTree {
329
+ return &BinaryIndexedTree{n: n, c: make([]int, n+1)}
320
330
}
321
331
322
- func (this *BinaryIndexedTree) lowbit(x int) int {
323
- return x & -x
324
- }
325
-
326
- func (this *BinaryIndexedTree) update(x, delta int) {
327
- for x <= this.n {
328
- this.c[x] += delta
329
- x += this.lowbit(x)
332
+ func (bit *BinaryIndexedTree) update(x, delta int) {
333
+ for ; x <= bit.n; x += x & -x {
334
+ bit.c[x] += delta
330
335
}
331
336
}
332
337
333
- func (this *BinaryIndexedTree) query(x int) int {
338
+ func (bit *BinaryIndexedTree) query(x int) int {
334
339
s := 0
335
- for x > 0 {
336
- s += this.c[x]
337
- x -= this.lowbit(x)
340
+ for ; x > 0; x -= x & -x {
341
+ s += bit.c[x]
338
342
}
339
343
return s
340
344
}
341
345
342
- func getModifiedArray(length int, updates [][]int) []int {
343
- tree := newBinaryIndexedTree (length)
346
+ func getModifiedArray(length int, updates [][]int) (ans []int) {
347
+ bit := NewBinaryIndexedTree (length)
344
348
for _, e := range updates {
345
- start, end, inc := e[0], e[1], e[2]
346
- tree .update(start +1, inc )
347
- tree .update(end +2, -inc )
349
+ l, r, c := e[0], e[1], e[2]
350
+ bit .update(l +1, c )
351
+ bit .update(r +2, -c )
348
352
}
349
- ans := make([]int, length)
350
- for i := range ans {
351
- ans[i] = tree.query(i + 1)
353
+ for i := 1; i <= length; i++ {
354
+ ans = append(ans, bit.query(i))
352
355
}
353
- return ans
356
+ return
354
357
}
355
358
```
356
359
360
+ #### TypeScript
361
+
362
+ ``` ts
363
+ class BinaryIndexedTree {
364
+ private n: number ;
365
+ private c: number [];
366
+
367
+ constructor (n : number ) {
368
+ this .n = n ;
369
+ this .c = Array (n + 1 ).fill (0 );
370
+ }
371
+
372
+ update(x : number , delta : number ): void {
373
+ for (; x <= this .n ; x += x & - x ) {
374
+ this .c [x ] += delta ;
375
+ }
376
+ }
377
+
378
+ query(x : number ): number {
379
+ let s = 0 ;
380
+ for (; x > 0 ; x -= x & - x ) {
381
+ s += this .c [x ];
382
+ }
383
+ return s ;
384
+ }
385
+ }
386
+
387
+ function getModifiedArray(length : number , updates : number [][]): number [] {
388
+ const bit = new BinaryIndexedTree (length );
389
+ for (const [l, r, c] of updates ) {
390
+ bit .update (l + 1 , c );
391
+ bit .update (r + 2 , - c );
392
+ }
393
+ return Array .from ({ length }, (_ , i ) => bit .query (i + 1 ));
394
+ }
395
+ ```
396
+
397
+ #### JavaScript
398
+
399
+ ``` js
400
+ /**
401
+ * @param {number} length
402
+ * @param {number[][]} updates
403
+ * @return {number[]}
404
+ */
405
+ var getModifiedArray = function (length , updates ) {
406
+ class BinaryIndexedTree {
407
+ constructor (n ) {
408
+ this .n = n;
409
+ this .c = Array (n + 1 ).fill (0 );
410
+ }
411
+
412
+ update (x , delta ) {
413
+ while (x <= this .n ) {
414
+ this .c [x] += delta;
415
+ x += x & - x;
416
+ }
417
+ }
418
+
419
+ query (x ) {
420
+ let s = 0 ;
421
+ while (x > 0 ) {
422
+ s += this .c [x];
423
+ x -= x & - x;
424
+ }
425
+ return s;
426
+ }
427
+ }
428
+
429
+ const bit = new BinaryIndexedTree (length);
430
+ for (const [l , r , c ] of updates) {
431
+ bit .update (l + 1 , c);
432
+ bit .update (r + 2 , - c);
433
+ }
434
+ return Array .from ({ length }, (_ , i ) => bit .query (i + 1 ));
435
+ };
436
+ ```
437
+
357
438
<!-- tabs:end -->
358
439
359
440
<!-- solution:end -->
0 commit comments