forked from atcoder/ac-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlazysegtree_test.cpp
117 lines (98 loc) · 3.04 KB
/
lazysegtree_test.cpp
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
#include "atcoder/lazysegtree"
#include <algorithm>
#include <string>
#include <vector>
#include <gtest/gtest.h>
using namespace atcoder;
struct starry {
static int op_ss(int a, int b) { return std::max(a, b); }
static int op_ts(int a, int b) { return a + b; }
static int op_tt(int a, int b) { return a + b; }
static int e_s() { return -1'000'000'000; }
static int e_t() { return 0; }
};
using starry_seg = lazy_segtree<int,
starry::op_ss,
starry::e_s,
int,
starry::op_ts,
starry::op_tt,
starry::e_t>;
TEST(LazySegtreeTest, Zero) {
{
starry_seg s(0);
ASSERT_EQ(-1'000'000'000, s.all_prod());
}
{
starry_seg s;
ASSERT_EQ(-1'000'000'000, s.all_prod());
}
{
starry_seg s(10);
ASSERT_EQ(-1'000'000'000, s.all_prod());
}
}
TEST(LazySegtreeTest, Assign) {
starry_seg seg0;
seg0 = starry_seg(10);
}
TEST(LazySegtreeTest, Invalid) {
EXPECT_THROW(auto s = starry_seg(-1), std::exception);
starry_seg s(10);
EXPECT_DEATH(s.get(-1), ".*");
EXPECT_DEATH(s.get(10), ".*");
EXPECT_DEATH(s.prod(-1, -1), ".*");
EXPECT_DEATH(s.prod(3, 2), ".*");
EXPECT_DEATH(s.prod(0, 11), ".*");
EXPECT_DEATH(s.prod(-1, 11), ".*");
}
TEST(LazySegtreeTest, NaiveProd) {
for (int n = 0; n <= 50; n++) {
starry_seg seg(n);
std::vector<int> p(n);
for (int i = 0; i < n; i++) {
p[i] = (i * i + 100) % 31;
seg.set(i, p[i]);
}
for (int l = 0; l <= n; l++) {
for (int r = l; r <= n; r++) {
int e = -1'000'000'000;
for (int i = l; i < r; i++) {
e = std::max(e, p[i]);
}
ASSERT_EQ(e, seg.prod(l, r));
}
}
}
}
TEST(LazySegtreeTest, Usage) {
starry_seg seg(std::vector<int>(10, 0));
ASSERT_EQ(0, seg.all_prod());
seg.apply(0, 3, 5);
ASSERT_EQ(5, seg.all_prod());
seg.apply(2, -10);
ASSERT_EQ(-5, seg.prod(2, 3));
ASSERT_EQ(0, seg.prod(2, 4));
}
#if __cplusplus >= 201703L
int op_const(const int& a, const int& b) { return std::max(a, b); }
struct const_starry {
static int op_ss(const int& a, const int& b) { return std::max(a, b); }
static int op_ts(const int& a, const int& b) { return a + b; }
static int op_tt(const int& a, const int& b) { return a + b; }
};
TEST(SegtreeTest, ConstFunc) {
lazy_segtree<int, const_starry::op_ss, starry::e_s, int,
const_starry::op_ts, const_starry::op_tt, starry::e_t>
seg(10);
}
#endif
#if __cplusplus >= 202002L
TEST(LazySegtreeTest, LambdaFunc) {
lazy_segtree<int, [](int a, int b) { return std::max(a, b); },
[]() { return -1'000'000'000; }, int,
[](int a, int b) { return a + b; },
[](int a, int b) { return a + b; }, []() { return 0; }>
seg(10);
}
#endif