Skip to content

Commit 22dae66

Browse files
committed
another fix
1 parent 0c7666b commit 22dae66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/data_structures/uncommon/permutation_tree.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ struct perm_tree {
5050
if (!empty(ch[u]) && touches(ch[u].back(), v)) {
5151
p[u].mn_num = min(p[u].mn_num, p[v].mn_num);
5252
p[u].len += p[v].len;
53-
ch[u] += v;
53+
ch[u].push_back(v);
5454
v = u;
5555
st.pop_back();
5656
continue;

0 commit comments

Comments
 (0)