shuprog1's blog

By shuprog1, history, 7 years ago, In English

I am referring to this problem: Determining DNA Health. The editorial mentions using Aho- Corasick Algorithm. I was wondering can it be solved using tries?

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
7 years ago, # |
  Vote: I like it +3 Vote: I do not like it

I am the setter of this problem. The Aho-Corasick automaton I mention in the editorial is a trie itself (it is created by adding the suffix links to trie nodes). So, in a way, that problem is solved using tries only.