Skip to content

Commit f003f01

Browse files
committed
more fixes
1 parent 88ed037 commit f003f01

20 files changed

+29
-29
lines changed

library/data_structures_[l,r)/lazy_seg_tree.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "lazy_seg_tree_midpoint.hpp"
2+
#include "seg_tree_midpoint.hpp"
33
ll op(ll vl, ll vr) { return vl + vr; }
44
struct seg_tree {
55
int n;

library/data_structures_[l,r]/bit.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
struct BIT {
66
vector<ll> s;
77
BIT(int n): s(n) {}
8-
#include "bit_uncommon/vector_constructor.hpp"
8+
#include "../data_structures_[l,r)/bit_uncommon/vector_constructor.hpp"
99
void update(int i, ll d) {
1010
for (; i < sz(s); i |= i + 1) s[i] += d;
1111
}
@@ -17,5 +17,5 @@ struct BIT {
1717
ll query(int l, int r) { // [l, r]
1818
return query(r) - query(l - 1);
1919
}
20-
#include "bit_uncommon/walk.hpp"
20+
#include "../data_structures_[l,r)/bit_uncommon/walk.hpp"
2121
};

tests/library_checker_aizu_tests/data_structures/binary_trie.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PROBLEM \
22
"https://judge.yosupo.jp/problem/set_xor_min"
33
#include "../template.hpp"
4-
#include "../../../library/data_structures/binary_trie.hpp"
4+
#include "../../../library/strings/binary_trie.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int q;

tests/library_checker_aizu_tests/data_structures/bit.test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"https://judge.yosupo.jp/problem/point_add_range_sum"
33
#include "../template.hpp"
44
#include "../../../library/contest/random.hpp"
5-
#include "../../../library/data_structures/bit_uncommon/rupq.hpp"
6-
#include "../../../library/data_structures/bit_uncommon/rurq.hpp"
7-
#include "../../../library/data_structures/lazy_seg_tree.hpp"
5+
#include "../../../library/data_structures_[l,r)/bit_uncommon/rupq.hpp"
6+
#include "../../../library/data_structures_[l,r)/bit_uncommon/rurq.hpp"
7+
#include "../../../library/data_structures_[l,r)/lazy_seg_tree.hpp"
88
int main() {
99
cin.tie(0)->sync_with_stdio(0);
1010
int n, q;

tests/library_checker_aizu_tests/data_structures/bit_ordered_set.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PROBLEM \
22
"https://judge.yosupo.jp/problem/ordered_set"
33
#include "../template.hpp"
4-
#include "../../../library/data_structures/bit_inc.hpp"
4+
#include "../../../library/data_structures_[l,r]/bit.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int n, q;
@@ -18,7 +18,7 @@ int main() {
1818
}
1919
ranges::sort(compress);
2020
compress.erase(unique(all(compress)), end(compress));
21-
bit_inc bit(ssize(compress));
21+
BIT bit(ssize(compress));
2222
auto get_compressed_idx = [&](int val) -> int {
2323
int l = 0, r = ssize(compress);
2424
while (l + 1 < r) {

tests/library_checker_aizu_tests/data_structures/bit_rupq.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PROBLEM \
22
"https://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=DSL_2_E"
33
#include "../template.hpp"
4-
#include "../../../library/data_structures/bit_uncommon/rupq.hpp"
4+
#include "../../../library/data_structures_[l,r)/bit_uncommon/rupq.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int n, q;

tests/library_checker_aizu_tests/data_structures/distinct_query.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PROBLEM \
22
"https://judge.yosupo.jp/problem/static_range_count_distinct"
33
#include "../template.hpp"
4-
#include "../../../library/data_structures/seg_tree_uncommon/distinct_query.hpp"
4+
#include "../../../library/data_structures_[l,r)/seg_tree_uncommon/distinct_query.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int n, q;

tests/library_checker_aizu_tests/data_structures/dsu_restorable.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PROBLEM \
22
"https://judge.yosupo.jp/problem/persistent_unionfind"
33
#include "../template.hpp"
4-
#include "../../../library/data_structures/dsu/dsu_restorable.hpp"
4+
#include "../../../library/dsu/dsu_restorable.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int n, q;

tests/library_checker_aizu_tests/data_structures/kruskal_tree_aizu.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PROBLEM \
22
"https://onlinejudge.u-aizu.ac.jp/problems/ALDS1_12_A"
33
#include "../template.hpp"
4-
#include "../../../library/data_structures/dsu/kruskal_tree.hpp"
4+
#include "../../../library/dsu/kruskal_tree.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int n;

tests/library_checker_aizu_tests/data_structures/lazy_segment_tree_constructor.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PROBLEM \
22
"https://judge.yosupo.jp/problem/point_add_range_sum"
33
#include "../template.hpp"
4-
#include "../../../library/data_structures/lazy_seg_tree.hpp"
4+
#include "../../../library/data_structures_[l,r)/lazy_seg_tree.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
{

0 commit comments

Comments
 (0)