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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
//! This crate provides the [prefix sum][1] data structure.
//!
//! A prefix sum is a data structure allowing several interval modifications to be
//! accumulated and applied to an array.
//!
//! ```
//! use prefix_sum::PrefixSum;
//!
//! let mut sum = PrefixSum::new(6);
//! // Each of these operations is O(1).
//! sum[2..4] += 2;
//! sum[1..3] += 3;
//! sum[0]    += 10;
//! sum[3..]  += 7;
//!
//! // build is O(len).
//! assert_eq!(vec![10, 3, 5, 9, 7, 7], sum.build());
//! ```
//!
//! The types usable in a [`PrefixSum`] are those implementing [`Summable`]. This trait
//! is implemented for the standard number types, and various features on the crate enable
//! implementations for various foreign types. See the [`summable`][2] module
//! documentation for a list of these features.
//!
//! Note that usage of unsigned types in a prefix sum requires wrapping subtraction and
//! addition to be usable.
//!
//! A two dimensional prefix sum is also provided in the [`sum2d`] module.
//!
//!   [1]: https://en.wikipedia.org/wiki/Prefix_sum
//!   [`PrefixSum`]: struct.PrefixSum.html
//!   [`Summable`]: summable/trait.Summable.html
//!   [2]: summable/index.html
//!   [`sum2d`]: sum2d/index.html

pub mod iter;
pub mod range;
pub mod sum2d;
pub mod summable;

use crate::iter::Iter;
use crate::summable::Summable;

/// Data type allowing `O(1)` interval modifications to an array.
///
/// # Example
///
/// ```
/// use prefix_sum::PrefixSum;
///
/// let mut sum = PrefixSum::new(6);
/// sum[2..=4] += 2;
/// sum[1..3] += 3;
///
/// sum[ ..3] -= 1;
/// sum[4.. ] += 10;
///
/// assert_eq!(vec![-1, 2, 4, 2, 12, 10], sum.build());
/// ```
///
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
pub struct PrefixSum<T: Summable> {
    values: Vec<T>,
}

impl<T: Summable> PrefixSum<T> {
    /// Builds a new `PrefixSum` filled with zeroes.
    ///
    /// This runs in linear time in the length.
    pub fn new(len: usize) -> PrefixSum<T> {
        let mut vec = Vec::with_capacity(len + 1);
        for _ in 0..=len {
            vec.push(T::zero());
        }
        PrefixSum { values: vec }
    }
    /// Returns a `PrefixSum`, such that calling [`build`] on the result would return the
    /// input.
    ///
    /// This allocates if `vec.len() == vec.capacity()`. This runs in linear time in the
    /// length.
    ///
    /// # Examples
    ///
    /// ```
    /// use prefix_sum::PrefixSum;
    ///
    /// let sum = PrefixSum::from_vec(vec![1, 2, 3, 4]);
    /// assert_eq!(sum.build(), vec![1, 2, 3, 4]);
    /// ```
    ///
    /// When resized, new items will be zero.
    ///
    /// ```
    /// use prefix_sum::PrefixSum;
    ///
    /// let mut sum = PrefixSum::from_vec(vec![1, 2, 3, 4]);
    /// sum.resize(5);
    /// assert_eq!(sum.build(), vec![1, 2, 3, 4, 0]);
    /// ```
    ///
    ///   [`build`]: struct.PrefixSum.html#method.build
    pub fn from_vec(mut vec: Vec<T>) -> PrefixSum<T> {
        if vec.len() == 0 {
            vec.push(T::zero());
            return PrefixSum {
                values: vec,
            };
        }
        let mut negsum = T::zero();
        negsum.sub_assign_ref(&vec[0]);
        for i in (1..vec.len()).rev() {
            let (a, b) = vec[i-1 ..= i].split_at_mut(1);
            let a = &a[0];
            let b = &mut b[0];
            Summable::sub_assign_ref(b, a);
            negsum.sub_assign_ref(&*b);
        }

        vec.push(negsum);
        PrefixSum {
            values: vec,
        }
    }
    /// Returns the number of items in this prefix sum.
    ///
    /// This runs in constant time.
    #[inline]
    pub fn len(&self) -> usize {
        self.values.len() - 1
    }
    /// Resize the prefix sum. Any changes done using intervals with no upper bound will
    /// affect the newly created values.
    ///
    /// If the size is decreased, this is constant time. If the size is increased, this
    /// runs in amortized linear time in the number of items added.
    ///
    /// # Example
    ///
    /// ```
    /// use prefix_sum::PrefixSum;
    ///
    /// let mut sum = PrefixSum::new(3);
    /// sum[ ..] += 2;
    /// sum[1..] += 3;
    ///
    /// sum[2] += 1;
    /// assert_eq!(vec![2, 5, 6], sum.clone().build());
    ///
    /// sum.resize(4);
    ///
    /// assert_eq!(vec![2, 5, 6, 5], sum.build());
    /// ```
    pub fn resize(&mut self, len: usize) {
        self.values.reserve(len+1);
        while self.values.len() <= len {
            self.values.push(T::zero());
        }
    }
    /// Build the vector containing the computed sums. This is linear time in the length.
    pub fn build(self) -> Vec<T>
    where
        T: std::fmt::Debug,
    {
        let mut vec = self.values;

        for i in 0..vec.len() - 2 {
            let (a, b) = vec[i..=i + 1].split_at_mut(1);
            let a = &a[0];
            let b = &mut b[0];
            Summable::add_assign_ref(b, a);
        }

        vec.pop();
        vec
    }
    /// Create an iterator through the sums in this `PrefixSum`.
    #[inline]
    pub fn iter(&self) -> Iter<'_, T>
    where
        T: Clone,
    {
        self.into_iter()
    }
}

#[cfg(test)]
mod tests {
    use super::PrefixSum;
    #[test]
    fn test_sum() {
        let mut sum: PrefixSum<i32> = PrefixSum::new(5);
        assert_eq!(sum.len(), 5);

        sum[3..5] += 10;
        assert_eq!(vec![0, 0, 0, 10, 10], sum.clone().build());

        sum[1..4] -= 3;
        assert_eq!(vec![0, -3, -3, 7, 10], sum.clone().build());

        sum[3..] += 5;
        assert_eq!(vec![0, -3, -3, 12, 15], sum.clone().build());

        sum.resize(6);
        assert_eq!(vec![0, -3, -3, 12, 15, 5], sum.clone().build());
    }
    #[test]
    fn test_unsigned() {
        let mut sum: PrefixSum<u32> = PrefixSum::new(5);
        assert_eq!(sum.len(), 5);

        sum[1..5] += 10;
        assert_eq!(vec![0, 10, 10, 10, 10], sum.clone().build());

        sum[1..4] += (-3i32) as u32;
        assert_eq!(vec![0, 7, 7, 7, 10], sum.clone().build());

        sum[3..] += 5;
        assert_eq!(vec![0, 7, 7, 12, 15], sum.clone().build());

        sum.resize(6);
        assert_eq!(vec![0, 7, 7, 12, 15, 5], sum.clone().build());
    }
}