Skip to content

Commit 7720fb2

Browse files
committed
revert changes
1 parent 8c98bff commit 7720fb2

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/library_checker_aizu_tests/handmade_tests/count_paths.test.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,14 @@ vector<vector<ll>> naive(const vector<vi>& adj) {
1616
for (int node = u; node != v;
1717
node = lc.next_on_path(node, v))
1818
cnts_naive[path_length_edges][node]++;
19-
assert(path_length_edges < ssize(cnts_naive));
20-
assert(v < ssize(cnts_naive[path_length_edges]));
2119
cnts_naive[path_length_edges][v]++;
2220
}
2321
}
2422
return cnts_naive;
2523
}
2624
int main() {
2725
cin.tie(0)->sync_with_stdio(0);
28-
for (int n = 1; n <= 1; n++) {
26+
for (int n = 1; n <= 100; n++) {
2927
vector<vi> adj(n);
3028
for (int i = 1; i < n; i++) {
3129
int par = rnd<int>(0, i - 1);

0 commit comments

Comments
 (0)