Problem C
Fenwick Tree
A Fenwick Tree (also known as a Binary Indexed Tree) is a
data structure on an array which enables fast (
For this problem, implement a Fenwick Tree to support operations of two types: (a) increment an element in the array or (b) query the prefix sum of a portion of the array.
Input
The first line of input contains two integers
-
“+
” indicates that is incremented by , where and (both are integers) -
“?
” is a query for the value of , where (for this is interpreted as an empty sum)
You should assume that every array entry is initially
Output
For each query in the input, output one line giving the answer to that query.
Sample Input 1 | Sample Output 1 |
---|---|
10 4 + 7 23 ? 8 + 3 17 ? 8 |
23 40 |
Sample Input 2 | Sample Output 2 |
---|---|
5 4 + 0 -43 + 4 1 ? 0 ? 5 |
0 -42 |