-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMaximumScoreWordFormedByLetters.java
110 lines (105 loc) · 3.18 KB
/
MaximumScoreWordFormedByLetters.java
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*https://leetcode.com/problems/maximum-score-words-formed-by-letters/*/
/*Greedy Approach that does not work for 2nd testcase*/
class Word implements Comparable<Word>
{
int[] hash;
int score;
Word(String word, int s)
{
hash = new int[26];
score = s;
for (char ch : word.toCharArray())
++hash[ch-'a'];
}
@Override
public int compareTo(Word w)
{
return w.score-this.score;
}
}
class Solution {
public int maxScoreWords(String[] words, char[] letters, int[] score) {
int W = words.length, L = letters.length, S = score.length, i, finalScore = 0;
int[] wordScores = new int[W];
for (i = 0; i < W; ++i)
for (char ch : words[i].toCharArray())
wordScores[i] += score[ch-'a'];
int[] freq = new int[S];
for (char letter : letters) ++freq[letter-'a'];
int[] newFreq, wordFreq;
PriorityQueue<Word> wordExtractor = new PriorityQueue<Word>();
for (i = 0; i < W; ++i)
wordExtractor.add(new Word(words[i],wordScores[i]));
Word word;
while (!wordExtractor.isEmpty())
{
word = wordExtractor.poll();
newFreq = freq.clone();
for (i = 0; i < S; ++i)
{
if (word.hash[i] <= newFreq[i])
newFreq[i] -= word.hash[i];
else
{
newFreq = null;
break;
}
}
if (newFreq != null)
{
freq = newFreq;
finalScore += word.score;
}
}
return finalScore;
}
}
/*DP equivalent approach*/
class Solution
{
int max, W;
public int maxScoreWords(String[] words, char[] letters, int[] score)
{
max = 0; W = words.length;
int L = letters.length, S = score.length, i, finalScore = 0;
int[] wordScores = new int[W];
for (i = 0; i < W; ++i)
for (char ch : words[i].toCharArray())
wordScores[i] += score[ch-'a'];
int[] freq = new int[S];
for (char letter : letters) ++freq[letter-'a'];
recur(words, wordScores, 0, freq, 0);
return max;
}
public void recur(String[] words, int[] scores, int index, int[] freq, int score)
{
if (index == W)
{
if (score > max) max = score;
return;
}
int[] newFreq = freq.clone();
// int[] hash = new int[26];
// for (char ch : words[index].toCharArray()) ++hash[ch-'a'];
// for (int i = 0; i < 26; ++i)
// {
// if (newFreq[i] >= hash[i]) newFreq[i] -= hash[i];
// else
// {
// newFreq = null;
// break;
// }
// }
for (char ch : words[index].toCharArray())
{
if (newFreq[ch-'a'] > 0) --newFreq[ch-'a'];
else
{
newFreq = null;
break;
}
}
if (newFreq != null) recur(words, scores, index+1, newFreq, score+scores[index]);
recur(words, scores, index+1, freq, score);
}
}