Another ad-hoc string problem

Revision en1, by glow, 2018-07-22 11:06:46

A string is called beautiful if string S = T + T. You're given a string find length of longest beautiful subsequence in given string.

Constraints : 1 <= length(S) <= 100

PS: Ihave no clue except try all numbers with k bits set and like bit-mask check if it's beautiful. Of-course you take k even and start from biggest possible k ie. length(S) - (length(S) & 1). Any hints on this ?

Tags #strings, #adhoc

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English glow 2018-07-22 11:06:46 429 Initial revision (published)