Skip to content

Commit 6911ed1

Browse files
committed
compile fixes
1 parent 42a9e50 commit 6911ed1

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

library/trees/lca_rmq.hpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
2-
#include "../../monotonic_stack/monotonic_stack.hpp"
3-
#include "../../data_structures/rmq.hpp"
2+
#include "../monotonic_stack/monotonic_stack.hpp"
3+
#include "../data_structures/rmq.hpp"
44
//! https://github.com/kth-competitive-programming/kactl/blob/main/content/graph/LCA.h
55
//! @code
66
//! {
@@ -36,9 +36,9 @@ struct LCA {
3636
auto [x, y] = minmax(tin[u], tin[v]);
3737
return p[rmq.query(x + 1, y + 1)];
3838
}
39-
#include "../extra_members/dist_edges.hpp"
40-
#include "../extra_members/in_subtree.hpp"
41-
#include "../extra_members/on_path.hpp"
42-
#include "next_on_path.hpp"
43-
#include "../extra_members/virtual_tree.hpp"
39+
#include "extra_members/dist.hpp"
40+
#include "extra_members/in_subtree.hpp"
41+
#include "extra_members/on_path.hpp"
42+
#include "extra_members/next_on_path.hpp"
43+
#include "extra_members/virtual_tree.hpp"
4444
};

library/trees/linear_lca.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ struct linear_lca {
4141
}
4242
return d[u] < d[v] ? u : v;
4343
}
44-
#include "extra_members/dist_edges.hpp"
44+
#include "extra_members/dist.hpp"
4545
};

tests/library_checker_aizu_tests/trees/count_paths_per_length.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/frequency_table_of_tree_distance"
33
#include "../template.hpp"
4-
#include "../../../library/trees/centroid_decomp_uncommon/count_paths_per_length.hpp"
4+
#include "../../../library/trees/uncommon/count_paths_per_length.hpp"
55
int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int n;

tests/library_checker_aizu_tests/trees/edge_cd_contour_range_query.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"https://judge.yosupo.jp/problem/vertex_add_range_contour_sum_on_tree"
33
#include "../template.hpp"
44
#include "../edge_cd_asserts.hpp"
5-
#include "../../../library/trees/edge_centroid_decomp_uncommon/contour_range_query.hpp"
5+
#include "../../../library/trees/uncommon/contour_range_query.hpp"
66
int main() {
77
cin.tie(0)->sync_with_stdio(0);
88
int n, q;

tests/library_checker_aizu_tests/trees/edge_cd_contour_range_update.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"https://judge.yosupo.jp/problem/vertex_get_range_contour_add_on_tree"
33
#include "../template.hpp"
44
#include "../edge_cd_asserts.hpp"
5-
#include "../../../library/trees/edge_centroid_decomp_uncommon/contour_range_update.hpp"
5+
#include "../../../library/trees/uncommon/contour_range_update.hpp"
66
int main() {
77
cin.tie(0)->sync_with_stdio(0);
88
int n, q;

tests/library_checker_aizu_tests/trees/edge_cd_count_paths_per_length.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"https://judge.yosupo.jp/problem/frequency_table_of_tree_distance"
33
#include "../template.hpp"
44
#include "../edge_cd_asserts.hpp"
5-
#include "../../../library/trees/edge_centroid_decomp_uncommon/count_paths_per_length.hpp"
5+
#include "../../../library/trees/uncommon/count_paths_per_length.hpp"
66
int main() {
77
cin.tie(0)->sync_with_stdio(0);
88
int n;

tests/library_checker_aizu_tests/trees/kth_path_ladder.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/jump_on_tree"
33
#include "../template.hpp"
4-
#include "../../../library/trees/ladder_decomposition/ladder_decomposition.hpp"
5-
#include "../../../library/trees/ladder_decomposition/linear_kth_par.hpp"
4+
#include "../../../library/trees/uncommon/ladder_decomposition.hpp"
5+
#include "../../../library/trees/linear_kth_par.hpp"
66
int main() {
77
cin.tie(0)->sync_with_stdio(0);
88
int n, q;

tests/library_checker_aizu_tests/trees/kth_path_linear.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"https://judge.yosupo.jp/problem/jump_on_tree"
33
#include "../template.hpp"
44
#include "../../../library/trees/linear_lca.hpp"
5-
#include "../../../library/trees/ladder_decomposition/linear_kth_par.hpp"
6-
#include "../../../library/trees/lca_rmq/lca_rmq.hpp"
5+
#include "../../../library/trees/linear_kth_par.hpp"
6+
#include "../../../library/trees/lca_rmq.hpp"
77
#include "../compress_tree_asserts.hpp"
88
int main() {
99
cin.tie(0)->sync_with_stdio(0);

0 commit comments

Comments
 (0)