Skip to content

Commit 2ccb2a1

Browse files
committed
more fixes
1 parent f003f01 commit 2ccb2a1

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

tests/library_checker_aizu_tests/data_structures/deque_op.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/deque_operate_all_composite"
33
#include "../template.hpp"
44
#include "../../../library/contest/random.hpp"
5-
#include "../../../library/data_structures/uncommon/deque_op.hpp"
5+
#include "../../../library/data_structures_[l,r)/uncommon/deque_op.hpp"
66
int main() {
77
cin.tie(0)->sync_with_stdio(0);
88
const int mod = 998'244'353;

tests/library_checker_aizu_tests/data_structures/dsu.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/unionfind"
22
#include "../template.hpp"
3-
#include "../../../library/data_structures/dsu/dsu.hpp"
3+
#include "../../../library/dsu/dsu.hpp"
44
int main() {
55
cin.tie(0)->sync_with_stdio(0);
66
int n, q;

tests/library_checker_aizu_tests/data_structures/dsu_bipartite.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/unionfind"
22
#include "../template.hpp"
3-
#include "../../../library/data_structures/dsu/dsu_bipartite.hpp"
3+
#include "../../../library/dsu/dsu_bipartite.hpp"
44
#include "../../../library/contest/random.hpp"
55
vector<bool> bipartite_check(
66
const vector<vector<int>>& adj) {

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

tests/library_checker_aizu_tests/data_structures/lazy_segment_tree.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/library/3/DSL/all/DSL_2_G"
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
{

tests/library_checker_aizu_tests/data_structures/permutation_tree.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/common_interval_decomposition_tree"
33
#include "../template.hpp"
44
#include "../perm_tree_asserts.hpp"
5-
#include "../../../library/data_structures/uncommon/permutation_tree.hpp"
5+
#include "../../../library/data_structures_[l,r)/uncommon/permutation_tree.hpp"
66
int main() {
77
cin.tie(0)->sync_with_stdio(0);
88
int n;

tests/library_checker_aizu_tests/data_structures/persistent_seg_tree.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// to `lower_bound`, causing TLE.
55
#undef _GLIBCXX_DEBUG
66
#include "../template.hpp"
7-
#include "../../../library/data_structures/seg_tree_uncommon/persistent.hpp"
7+
#include "../../../library/data_structures_[l,r)/seg_tree_uncommon/persistent.hpp"
88
int main() {
99
cin.tie(0)->sync_with_stdio(0);
1010
int n, q;

tests/library_checker_aizu_tests/data_structures/rmq_linear.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/staticrmq"
22
#include "../template.hpp"
3-
#include "../../../library/data_structures/uncommon/linear_rmq.hpp"
3+
#include "../../../library/data_structures_[l,r]/linear_rmq.hpp"
44
int main() {
55
cin.tie(0)->sync_with_stdio(0);
66
int n, q;

0 commit comments

Comments
 (0)