Skip to content

Commit ae2c457

Browse files
committed
fix
1 parent 2ccb2a1 commit ae2c457

30 files changed

+38
-42
lines changed

library/graphs/mst.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "../data_structures/dsu/dsu.hpp"
2+
#include "../dsu/dsu.hpp"
33
//! @code
44
//! auto [mst_cost, ids] = mst(w_eds, n);
55
//! @endcode

library/strings/manacher/longest_palindrome_query.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "../../data_structures/rmq.hpp"
2+
#include "../../data_structures_[l,r)/rmq.hpp"
33
#include "manacher.hpp"
44
//! queries for longest palindromic substring of a given
55
//! substring

library/trees/lca_rmq.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22
#include "../monotonic_stack/monotonic_stack.hpp"
3-
#include "../data_structures/rmq.hpp"
3+
#include "../data_structures_[l,r)/rmq.hpp"
44
//! https://github.com/kth-competitive-programming/kactl/blob/main/content/graph/LCA.h
55
//! @code
66
//! vector<basic_string<int>> adj(n);

library/trees/uncommon/contour_range_query.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "../../data_structures/bit.hpp"
2+
#include "../../data_structures_[l,r)/bit.hpp"
33
#include "../edge_cd.hpp"
44
#include "sum_adjacent.hpp"
55
//! https://judge.yosupo.jp/problem/vertex_add_range_contour_sum_on_tree

library/trees/uncommon/contour_range_update.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#pragma once
2-
#include "../../data_structures/bit_uncommon/rupq.hpp"
2+
#include "../../data_structures_[l,r)/bit_uncommon/rupq.hpp"
33
#include "../edge_cd.hpp"
44
#include "sum_adjacent.hpp"
55
//! https://judge.yosupo.jp/problem/vertex_get_range_contour_add_on_tree

tests/library_checker_aizu_tests/data_structures/bit_inc.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#define PROBLEM \
22
"https://judge.yosupo.jp/problem/point_add_range_sum"
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;
88
cin >> n >> q;
9-
bit_inc bit(n);
9+
BIT bit(n);
1010
for (int i = 0; i < n; i++) {
1111
int val;
1212
cin >> val;

tests/library_checker_aizu_tests/data_structures/bit_rurq.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_G"
33
#include "../template.hpp"
4-
#include "../../../library/data_structures/bit_uncommon/rurq.hpp"
4+
#include "../../../library/data_structures_[l,r)/bit_uncommon/rurq.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int n, q;

tests/library_checker_aizu_tests/data_structures/bit_walk.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#define PROBLEM \
22
"https://judge.yosupo.jp/problem/predecessor_problem"
33
#include "../template.hpp"
4-
#include "../../../library/data_structures/bit.hpp"
5-
#include "../../../library/data_structures/lazy_seg_tree.hpp"
4+
#include "../../../library/data_structures_[l,r)/bit.hpp"
5+
#include "../../../library/data_structures_[l,r)/lazy_seg_tree.hpp"
66
int main() {
77
cin.tie(0)->sync_with_stdio(0);
88
int n, q;

tests/library_checker_aizu_tests/data_structures/deque.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/courses/lesson/8/ITP2/all/ITP2_1_B"
33
#include "../template.hpp"
4-
#include "../../../library/data_structures/uncommon/deque_op.hpp"
4+
#include "../../../library/data_structures_[l,r)/uncommon/deque_op.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int q;

tests/library_checker_aizu_tests/data_structures/deque_index.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define PROBLEM "https://judge.yosupo.jp/problem/deque"
22
#include "../template.hpp"
3-
#include "../../../library/data_structures/uncommon/deque_op.hpp"
3+
#include "../../../library/data_structures_[l,r)/uncommon/deque_op.hpp"
44
int main() {
55
cin.tie(0)->sync_with_stdio(0);
66
int q;

0 commit comments

Comments
 (0)