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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
//! 直線の集合。

use super::btree_bimap;

use std::collections::BTreeMap;
use std::fmt::{self, Debug};

use btree_bimap::BTreeBimap;

/// 直線の集合。
///
/// 以下のクエリを処理する。
/// - 集合 $S \\gets \\emptyset$ で初期化する。
/// - 集合 $S$ に 1 次関数 $\\lambda x.\\; ax+b$ を追加する。
/// - 集合 $S$ 中の関数における、$x=x\_0$ での最小値を返す。
///
/// 言い換えると、直線の追加クエリと、特定の $x$ 座標での $y$
/// 座標の最小値を求めるクエリを捌く。いわゆる CHT。
///
/// # Idea
/// 次の二つの連想配列を管理する。
/// - $a$ を与えると、$\\lambda x.\\; ax+b \\in S$ なる $b$ を返す。
/// - $a$ を与えると、$\\lambda x.\\; ax+b \\in S$ が最小となる $x$ の最大値 $x\_a$ を返す。
///     - こちらは双方向で管理しておく。すなわち、$x\_a\\mapsto a$ の連想配列も持つ。
///
/// 保持しておく必要がある直線を対応する区間の昇順に並べると、傾きの降順に並ぶことに気づく。
/// そこで、追加したい直線の傾きより小さい最大の傾きの直線と、大きい最小の直線と比較し、
/// 新しい直線が必要かどうかをまず確かめる。
/// それが必要なら、追加する直線に近い方から順にすでにある直線を見ていき、
/// 必要なものが見つかるまで削除する。
///
/// クエリを整数とすると、以下が成り立つ。
///
/// $$ \\begin{aligned}
/// f(\\lambda x.\\; a\_l x+b\_l, \\lambda x.\\; a\_r x+b\_r)
/// &= \\max\\,\\{k \\mid a\_l k+b\_l \\le a\_r k+b\_r \\} \\\\
/// &= \\left\\lfloor\\frac{b\_r-b\_l}{a\_l-a\_r}\\right\\rfloor.
/// \\end{aligned} $$
///
/// # Complexity
/// |演算|時間計算量|
/// |---|---|
/// |`new`|$O(1)$|
/// |`push`|$O(\\log(\|S\'\|))$|
/// |`min`|$O(\\log(\|S\'\|))$|
///
/// ここで、$S\'$ は $S$ から必要のない直線を除いたものからなる集合である。
///
/// # Applications
/// 次の形式の DP の高速化に使える。
/// $$ \\mathrm{dp}\[i\] = \\min\_{0\\le j\\lt i} (p(j)+q(j)\\cdot r(i)) +s(i). $$
/// $\\min\_{0\\le j\\lt i} (\\bullet)$ の部分が、直線 $y=q(j)\\cdot x+p(j)$ の $x=r(i)$
/// における最小値に相当するためである。$\\mathrm{dp}\[i\]$ の値を求めた後、直線
/// $y=q(i)\\cdot x+p(i)$ を追加していけばよい。ここで、$p(j)$ や $q(j)$ は
/// $\\mathrm{dp}\[j\]$ を含んでもよいし含まなくてもよい。どちらにも $\\mathrm{dp}\[j\]$
/// が含まれない場合には、特に DP 配列のようなものを用意する必要はない。
///
/// たとえば、次のようなものが当てはまる。
/// $$ \\begin{aligned}
/// \\mathrm{dp}\[i\] &= \\min\_{0\\le j\\lt i} (\\mathrm{dp}\[j\]+(a\_j-a\_i)^2) \\\\
/// &= \\min\_{0\\le j\\lt i} ((\\mathrm{dp}\[j\]+a\_j^2) + (-2\\cdot a\_j)\\cdot a\_i)+a\_i^2.
/// \\end{aligned} $$
///
/// お気に入りの例として、[次のような問題](https://codeforces.com/contest/660/problem/F)
/// も解ける:
/// > 整数列 $a = (a\_0, a\_1, \\dots, a\_{n-1})$ が与えられる。
/// > これの空でもよい区間 $(a\_l, a\_{l+1}, \\dots, a\_{r-1})$
/// > に対し、次の値を考える。
/// > $$ \\sum\_{i=l}^{r-1} (i-l+1)\\cdot a\_i
/// > = 1\\cdot a\_l+2\\cdot a\_{l+1} + \\dots + (r-l)\\cdot a\_{r-1}. $$
/// > 全ての区間の選び方におけるこの値の最大値を求めよ。
/// >
/// > ### Sample
/// > ```text
/// > [5, -1000, 1, -3, 7, -8]
/// >           [ ------ ] => 1 * 1 + (-3) * 2 + 7 * 3 = 16
/// > ```
///
/// $\\sigma(r) = \\sum\_{i=0}^{r-1} a\_i$、$\\tau(r) = \\sum\_{i=0}^{r-1} (i+1)\\cdot a\_i$
/// とおくと、次のように変形できる。
/// $$ \\begin{aligned} \\sum\_{i=l}^{r-1} (i-l+1)\\cdot a\_i &=
/// \\sum\_{i=l}^{r-1} (i+1)\\cdot a\_i - \\sum\_{i=l}^{r-1} l\\cdot a\_i \\\\
/// &= (\\tau(r)-\\tau(l)) - l\\cdot (\\sigma(r) - \\sigma(l))
/// . \\end{aligned} $$
///
/// 右端 $r$ を固定したときの最大値を $\\mathrm{dp}\[r\]$ とおくと、
/// $$ \\begin{aligned} \\mathrm{dp}\[r\] &=
/// \\max\_{0\\le l\\lt r} (\\tau(r)-\\tau(l)) - l\\cdot(\\sigma(r)-\\sigma(l)) \\\\
/// &= \\max\_{0\\le l\\lt r} (l\\cdot\\sigma(l)-\\tau(l) - l\\cdot\\sigma(r))+\\tau(r) \\\\
/// &= -\\min\_{0\\le l\\lt r}(\\tau(l)-l\\cdot\\sigma(l) + l\\cdot\\sigma(r))+\\tau(r)
/// \\end{aligned} $$
/// とできる。よって、上記の枠組みで $p(j) = \\tau(j)-j\\cdot\\sigma(j)$、$q(j)=j$、
/// $r(i)=\\sigma(i)$、$s(i)=\\tau(i)$ としたものと見なせ、$\\sigma(\\bullet)$ や $\\tau(\\bullet)$
/// の計算を適切に高速化すれば、$O(n\\log(n))$ 時間で解ける。
///
/// # Examples
/// ```
/// use nekolib::ds::IncrementalLineSet;
///
/// let mut ls = IncrementalLineSet::new();
/// assert_eq!(ls.min(0), None);
///
/// ls.push((2, 2));
/// assert_eq!(ls.min(0), Some(2));
/// assert_eq!(ls.min(2), Some(6));
///
/// ls.push((1, 3));
/// assert_eq!(ls.min(0), Some(2));
/// assert_eq!(ls.min(2), Some(5));
/// assert_eq!(ls.min(5), Some(8));
///
/// ls.push((-1, 10));
/// assert_eq!(ls.min(2), Some(5));
/// assert_eq!(ls.min(5), Some(5));
///
/// assert_eq!(
///     format!("{:?}", ls),
///     r"{\x. 2x+2: ..=1, \x. x+3: ..=3, \x. -x+10: ..=2147483647}"
/// );
/// ```
///
/// ```
/// use nekolib::ds::IncrementalLineSet;
///
/// let a = vec![5, -1000, 1, -3, 7, -8];
/// let n = a.len();
///
/// let sigma = {
///     let mut sigma = vec![0; n + 1];
///     for i in 0..n {
///         sigma[i + 1] = sigma[i] + a[i];
///     }
///     sigma
/// };
/// let tau = {
///     let mut tau = vec![0; n + 1];
///     for i in 0..n {
///         tau[i + 1] = tau[i] + a[i] * (i + 1) as i64;
///     }
///     tau
/// };
/// let p = |j: usize| tau[j] - j as i64 * sigma[j];
/// let q = |j: usize| j as i64;
/// let r = |i: usize| sigma[i];
/// let s = |i: usize| tau[i];
///
/// let mut ls = IncrementalLineSet::new();
/// let mut dp = vec![0; n + 1];
/// ls.push((q(0), p(0)));
/// for i in 1..=n {
///     dp[i] = -ls.min(r(i)).unwrap() + s(i);
///     ls.push((q(i), p(i)));
/// }
/// let res = *dp.iter().max().unwrap();
/// assert_eq!(res, 1 * 1 + (-3) * 2 + 7 * 3);
/// ```
///
/// # References
/// - <https://noshi91.hatenablog.com/entry/2021/03/23/200810>
#[derive(Clone, Default)]
pub struct IncrementalLineSet<I: Ord> {
    f: BTreeMap<I, I>,
    range: BTreeBimap<I, I>,
}

impl<I: ChtInt> IncrementalLineSet<I> {
    pub fn new() -> Self { Self::default() }
    pub fn push(&mut self, (a, b): (I, I)) {
        if self.f.is_empty() {
            let max = I::oo();
            self.f.insert(a, b);
            self.range.insert(a, max);
            return;
        }
        if self.unused((a, b)) {
            return;
        }
        self.remove_unused((a, b));
        self.insert((a, b));
    }
    pub fn min(&self, x: I) -> Option<I> {
        let a = *self.range.range_right(x..).next()?.1;
        let b = self.f[&a];
        Some(x.on_line((a, b)))
    }
    pub fn inner_len(&self) -> usize { self.f.len() }

    fn unused(&self, (a, b): (I, I)) -> bool {
        let (&al, &bl) = match self.f.range(a..).next() {
            Some((&al, &bl)) if a == al => return bl <= b,
            Some(s) => s,
            None => return false,
        };
        let (&ar, &br) = match self.f.range(..a).next_back() {
            Some(s) => s,
            None => return false,
        };
        al.right(bl, (a, b)) >= a.right(b, (ar, br))
    }
    fn remove_unused(&mut self, (a, b): (I, I)) {
        self.f.remove(&a);
        self.range.remove_left(&a);

        let mut rm = vec![];
        for ((&all, &bll), (&al, &bl)) in
            self.f.range(a..).skip(1).zip(self.f.range(a..))
        {
            if all.right(bll, (al, bl)) >= al.right(bl, (a, b)) {
                rm.push(al);
            } else {
                break;
            }
        }
        for ((&arr, &brr), (&ar, &br)) in
            self.f.range(..a).rev().skip(1).zip(self.f.range(..a).rev())
        {
            if a.right(b, (ar, br)) >= ar.right(br, (arr, brr)) {
                rm.push(ar);
            } else {
                break;
            }
        }
        for ar in &rm {
            self.f.remove(ar);
            self.range.remove_left(ar);
        }
    }
    fn insert(&mut self, (a, b): (I, I)) {
        if let Some((&al, &bl)) = self.f.range(a..).next() {
            self.range.insert(al, al.right(bl, (a, b)));
        };
        if let Some((&ar, &br)) = self.f.range(..a).next_back() {
            self.range.insert(a, a.right(b, (ar, br)));
        } else {
            self.range.insert(a, I::oo());
        }

        self.f.insert(a, b);
    }
}

struct LineDebugHelper<I>(I, I);

impl<I: ChtInt> Debug for LineDebugHelper<I> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        let s = match (self.0.simplify(), self.1.simplify()) {
            (0, _) => format!("\\x. {:?}", self.1),
            (1, _) => format!("\\x. x{:+?}", self.1),
            (-1, _) => format!("\\x. -x{:+?}", self.1),
            (_, 0) => format!("\\x. {:?}x", self.0),
            _ => format!("\\x. {:?}x{:+?}", self.0, self.1),
        };
        f.write_str(&s)
    }
}

impl<I: ChtInt> Debug for IncrementalLineSet<I> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_map()
            .entries(
                self.f
                    .iter()
                    .rev()
                    .zip(self.range.range_left(..).rev())
                    .map(|((&a, &b), (&_, &r))| (LineDebugHelper(a, b), ..=r)),
            )
            .finish()
    }
}

pub trait ChtInt: Copy + Ord + Default + Debug {
    fn oo() -> Self;
    fn right(self, b: Self, line1: (Self, Self)) -> Self;
    fn on_line(self, line: (Self, Self)) -> Self;
    fn simplify(self) -> i8;
}

macro_rules! impl_cht_int {
    ( $($tt:tt)* ) => { $(
        impl ChtInt for $tt {
            // std::$tt::MAX が 1.43.0 で AtCoder は 1.42.0 なのがつらい。
            fn oo() -> $tt {
                let w = (0 as $tt).count_zeros();
                ((1 as $tt) << (w - 1)).wrapping_sub(1)
            }
            fn right(self, b: Self, (ar, br): (Self, Self)) -> Self {
                // a > ar
                let a = self;
                (br - b).div_euclid(a - ar)
            }
            fn on_line(self, (a, b): (Self, Self)) -> Self { a * self + b }
            fn simplify(self) -> i8 {
                match self {
                    0 => 0,
                    1 => 1,
                    -1 => -1,
                    _ => 2,
                }
            }
        }
    )* };
}

impl_cht_int! { i8 i16 i32 i64 i128 isize }

#[test]
fn test_simple() {
    let mut ls = IncrementalLineSet::new();
    assert_eq!(ls.min(1), None);

    let mut f = std::iter::successors(Some(185_i32), |&x| {
        Some((x * 291 + 748) % 93739)
    })
    .map(|x| x % 300 - 150);

    let mut naive = vec![];
    for _ in 0..5000 {
        let a = f.next().unwrap();
        let b = f.next().unwrap();
        ls.push((a, b));
        naive.push((a, b));
        for x in -100..=100 {
            let expected = naive.iter().map(|&(a, b)| a * x + b).min();
            let got = ls.min(x);
            assert_eq!(got, expected);
        }
    }
}

#[test]
fn test_cross() {
    // 一点でたくさんの直線が交差する場合のテストを書く
    let mut ls = IncrementalLineSet::new();
    // (0, 0) でたくさん交わるようにする
    ls.push((0, 0));
    for a in 1..1000 {
        ls.push((a, 0));
        assert_eq!(ls.inner_len(), 2);
    }
    for a in 1..1000 {
        ls.push((-a, 0));
        assert_eq!(ls.inner_len(), 2);
    }
}

#[test]
fn test_many() {
    // 傾きが 1 ずつ異なる直線がたくさん使われる場合のテストを書く
    let mut ls = IncrementalLineSet::new();
    // (0, 0), (1, -1), (2, -3), (3, -6), (4, -10), ...
    let mut y = 0;
    let x_max = 1000;
    for x in 0..=x_max {
        let a = -x;
        y += a;
        // (x, y) を通り、傾きが a
        // Y - y = a (X - x)
        // Y = a X - a x + y
        ls.push((a, -a * x + y));
        // (-x-1, y) を通り、傾きが -a
        ls.push((-a, -a * x + y - a));
        assert_eq!(ls.inner_len(), (2 * x + 1) as usize);
    }
    for x in -x_max..=x_max {
        let y = -x * (x + 1) / 2;
        assert_eq!(ls.min(x), Some(y));
    }
}

#[test]
fn test_frac() {
    // ある直線が最小となる区間が格子点を含まない場合のテストを書く
    let mut ls = IncrementalLineSet::new();
    ls.push((2, 1)); // [..., -1, 1, 3, ...]
    ls.push((-5, 6)); // [..., 11, 6, 1, ...]
    ls.push((0, 3)); // [..., 3, 3, 3, ...]
    assert_eq!(ls.inner_len(), 2);
}

#[test]
fn test_below() {
    let mut ls = IncrementalLineSet::new();
    ls.push((0, 2));
    assert_eq!(ls.min(10), Some(2));
    ls.push((0, 4));
    assert_eq!(ls.min(10), Some(2));
    ls.push((0, 1));
    assert_eq!(ls.min(10), Some(1));
    assert_eq!(ls.inner_len(), 1);
}

#[cfg(test)]
fn test_cf660_f_internal(a: &[i64], expected: i64) {
    let n = a.len();
    let sigma = {
        let mut sigma = vec![0; n + 1];
        for i in 0..n {
            sigma[i + 1] = sigma[i] + a[i];
        }
        sigma
    };
    let tau = {
        let mut tau = vec![0; n + 1];
        for i in 0..n {
            tau[i + 1] = tau[i] + a[i] * (i + 1) as i64;
        }
        tau
    };
    let p = |j: usize| tau[j] - j as i64 * sigma[j];
    let q = |j: usize| j as i64;
    let r = |i: usize| sigma[i];
    let s = |i: usize| tau[i];

    let mut ls = IncrementalLineSet::new();
    let mut dp = vec![0; n + 1];
    ls.push((q(0), p(0)));
    for i in 1..=n {
        dp[i] = -ls.min(r(i)).unwrap() + s(i);
        ls.push((q(i), p(i)));
    }
    let actual = *dp.iter().max().unwrap();
    assert_eq!(actual, expected);
}

#[test]
fn test_cf660_f() {
    test_cf660_f_internal(&[5, -1000, 1, -3, 7, -8], 16);
    test_cf660_f_internal(&[1000, 1000, 1001, 1000, 1000], 15003);
    test_cf660_f_internal(&[-60, -70, -80], 0);
    test_cf660_f_internal(&[-4], 0);
    test_cf660_f_internal(&[-3, 6], 9);
    test_cf660_f_internal(&[8, 1, -6], 10);
    test_cf660_f_internal(&[9, 2, -5, 1], 13);
    test_cf660_f_internal(&[10, -3, -3, 8, 2], 37);
    test_cf660_f_internal(&[3, 1, -9, 1, 2, -10], 5);
    test_cf660_f_internal(&[-3, -7, -7, -9, -3, 7, -9], 11);
    test_cf660_f_internal(&[-2, 1, -5, -2, 1, -9, 0, 2], 4);
    test_cf660_f_internal(&[-1, 10, -8, -9, -7, 8, 6, -6, 7], 38);
    test_cf660_f_internal(&[-9, -10, -9, 4, 6, 8, 3, -8, 0, 10], 100);
    test_cf660_f_internal(
        &[
            349, -152, -35, -353, -647, -702, 64, 299, -431, -11, -185, 437,
            237, -103, 1, 448, 23, -308, -689, 329, -409, 309, 424, -93, -192,
            0, 257, -90, -394, -512, -148, 376, -394, -528, 212, -215, -255,
            -684, -321, 503, -72, -227, -583, -537, -65, 444, -332, 465, -547,
            291, -663, -235, 542, -89, -450, -212, 438, 12, 139, -558, -87,
            433, -462, 79, 35,
        ],
        6676,
    );
    test_cf660_f_internal(&[7, -5, 3, -9, 8], 10);
    test_cf660_f_internal(&[-7, 0, 10, 1, -1, -5, 6], 34);
    test_cf660_f_internal(&[3, -10, -2, 5, 2, -7, 7], 21);
    test_cf660_f_internal(&[0, -7, 1, -9], 1);
    test_cf660_f_internal(&[4, -6, 3, 3], 13);
    test_cf660_f_internal(&[-9, 8, 0, -4, -4, -3, -5, 9, -6, -9], 14);
    test_cf660_f_internal(&[3, -5, -5, 1, -6, -2], 3);
    test_cf660_f_internal(&[8, -2, -8, 4, -8, 8, -3, -8, 0], 12);
    test_cf660_f_internal(&[3, 3, 0, -7, 6, -6], 11);
    test_cf660_f_internal(&[5, -6, -2, 6, -2, -4, -3], 11);
}