MCPcopy Create free account
hub / github.com/Jonathan-Uy/CSES-Solutions / update

Function update

Additional Problems I/Sorting Methods.cpp:27–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27void update(int idx, int val){
28 for(int i = idx; i < maxN; i += -i&i)
29 bit[i] += val;
30}
31
32ll query(int idx){
33 int sum = 0;

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected