File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
tests/library_checker_aizu_tests/data_structures Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,14 @@ int main() {
2222 a[idx_right_min]);
2323 assert (l <= idx_right_min && idx_right_min < r);
2424 assert (rmq_less.query (l, r - 1 ) == a[idx_right_min]);
25- assert (
26- idx_right_min == rmq_greater.idx (l, r - 1 ));
25+ assert (idx_right_min == rmq_greater.idx (l, r - 1 ));
2726 int idx_left_min = rmq_less_equal.idx (l, r - 1 );
2827 assert (l == idx_left_min ||
2928 rmq_less_equal.query (l, idx_left_min - 1 ) >
3029 a[idx_left_min]);
3130 assert (l <= idx_left_min && idx_left_min < r);
32- assert (idx_left_min ==
33- rmq_greater_equal.idx (l, r - 1 ));
31+ assert (
32+ idx_left_min == rmq_greater_equal.idx (l, r - 1 ));
3433 assert (a[idx_right_min] == a[idx_left_min]);
3534 assert (idx_left_min <= idx_right_min);
3635 cout << a[idx_right_min] << ' \n ' ;
You can’t perform that action at this time.
0 commit comments