Skip to content

Commit dc300ba

Browse files
committed
fix another test
1 parent 1df251a commit dc300ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/library_checker_aizu_tests/data_structures/merge_sort_tree.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ int main() {
1515
while (q--) {
1616
int l, r, x;
1717
cin >> l >> r >> x;
18-
assert(mst.query(l, r, x, x) == 0);
19-
cout << mst.query(l, r, x, x + 1) << '\n';
18+
cout << mst.query(l, r, x + 1) - mst.query(l, r, x)
19+
<< '\n';
2020
}
2121
return 0;
2222
}

0 commit comments

Comments
 (0)