-
Notifications
You must be signed in to change notification settings - Fork 3
/
LongestPalindromeByConcatenatingTwoLetterWords2131.kt
70 lines (55 loc) · 2 KB
/
LongestPalindromeByConcatenatingTwoLetterWords2131.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package medium
/**
* You are given an array of strings words. Each element of words consists of two lowercase English letters.
Create the longest possible palindrome by selecting some elements from words and concatenating them in any order. Each element can be selected at most once.
Return the length of the longest palindrome that you can create. If it is impossible to create any palindrome, return 0.
A palindrome is a string that reads the same forward and backward.
Example 1:
Input: words = ["lc","cl","gg"]
Output: 6
Explanation: One longest palindrome is "lc" + "gg" + "cl" = "lcggcl", of length 6.
Note that "clgglc" is another longest palindrome that can be created.
Example 2:
Input: words = ["ab","ty","yt","lc","cl","ab"]
Output: 8
Explanation: One longest palindrome is "ty" + "lc" + "cl" + "yt" = "tylcclyt", of length 8.
Note that "lcyttycl" is another longest palindrome that can be created.
Example 3:
Input: words = ["cc","ll","xx"]
Output: 2
Explanation: One longest palindrome is "cc", of length 2.
Note that "ll" is another longest palindrome that can be created, and so is "xx".
Constraints:
1 <= words.length <= 105
words[i].length == 2
words[i] consists of lowercase English letters.
*/
fun longestPalindrome(words: Array<String>): Int {
val map = HashMap<String, Int>()
for (word in words) {
val count = map.getOrDefault(word, 0)
map[word] = count + 1
}
var answer = 0
var centeral = false
for ((key, value) in map) {
val word = key
val countOfWords = value
if (word[0] == word[1]) {
if (countOfWords % 2 == 0)
answer += countOfWords
else {
centeral = true
answer += countOfWords - 1
}
} else {
val reversed = word.reversed()
if (map.contains(reversed)) {
answer += Math.min(countOfWords, map.getOrDefault(reversed, 0))
}
}
}
if (centeral)
answer++
return answer * 2
}