Skip to content

Commit 1d9621c

Browse files
committed
fix
1 parent 665fb54 commit 1d9621c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/library_checker_aizu_tests/data_structures/range_parallel_dsu.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ int main() {
3232
vi sums(n);
3333
int offline_ans = 0;
3434
for (int i = 0; i < n; i++) {
35-
int id = uf.find(i);
35+
int id = uf.f(i);
3636
offline_ans =
3737
(offline_ans + 1LL * sums[id] * y[i]) % mod;
3838
sums[id] = (sums[id] + y[i]) % mod;

tests/library_checker_aizu_tests/handmade_tests/permutation_tree_small.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"https://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ITP1_1_A"
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
for (int n = 1; n <= 8; n++) {

0 commit comments

Comments
 (0)