FOo_bar_2's blog

By FOo_bar_2, history, 3 years ago, In English

Can someone provide some insight on how to approach this problem ?

Full text and comments »

  • Vote: I like it
  • +8
  • Vote: I do not like it

By FOo_bar_2, 4 years ago, In English

Statement

You are given two strings a and b. Find shortest string which being repeated infinitely contains the both strings. I.e. find such shortest s that infinite string ss... s... contains a and contains b as a substring.

Constraints

  • $$$1 \le Number of Test Cases \le 100$$$
  • $$$1 \le len(a) \le 10000$$$
  • $$$1 \le len(b) \le 10000$$$

This problem is not from an ongoing contest. Those who have access to the group (Brazil ICPC Summer School 2018) can view it here!

Full text and comments »

  • Vote: I like it
  • +18
  • Vote: I do not like it

By FOo_bar_2, 4 years ago, In English

Note : By tree I mean a weighted tree where each node has a weight.

Is there anyway to build the Cartesian Tree of a Tree efficiently (less than $$$O(n^2)$$$) ?

By Cartesian tree of a tree I mean the following:

Find the node with minimum weight in the Tree. Make it the root.

Recursively do this for each of the subtrees formed and attach their roots to the Earlier root.

I chose to call it Cartesian Tree because it is very similar to this.

Full text and comments »

  • Vote: I like it
  • +7
  • Vote: I do not like it