【发布时间】:2017-02-09 17:07:09
【问题描述】:
我指的是 InterviewBit 上的“Sorted Permutation Rank with Repeats”问题,我的解决方案可以产生正确的输出,但长字符串值除外。这通常是由大型阶乘的溢出引起的。
我已经通过使用 Java 中的 BigInteger 数学类产生了一种解决方法,但解决方案提示建议使用“模乘逆”作为替代方法来计算 (N-1)! / (p1! * p2! * p3! ... ) 其中 p1、p2 和 p3 是字符串中重复字符的频率。
所以我的问题是,“模乘逆”如何帮助解决不适合整数原始类型的大阶乘值,它背后的数学直觉是什么?我确实知道如何解决这个编程问题,但阻止成功提交的唯一部分是长字符串值。
非常感谢对此的任何解释!我的解决方案是在下面生成的,没有使用 BigInteger 类。
public class Solution {
public long fact(int n) {
return (n <= 1) ? 1 : (n * fact(n-1));
}
public HashMap<Character, Integer> generateFreq(ArrayList<Character> charList){
HashMap<Character, Integer> map = new HashMap<Character, Integer>();
for (int i = 0; i < charList.size(); i++){
char c = charList.get(i);
if (!map.containsKey(c)) map.put(c, 1);
else map.put(c, map.get(c)+1);
}
return map;
}
public int findRank(String a) {
char[] charArray = a.toCharArray();
ArrayList<Character> charList = new ArrayList<Character>(charArray.length);
ArrayList<Character> sortedCharList = new ArrayList<Character>(charArray.length);
for (char c : charArray){
charList.add(c);
sortedCharList.add(c);
}
Collections.sort(sortedCharList);
long rank = 1;
int factNum = charArray.length - 1;
int matchedIndex = 0;
int index = 0;
while (!sortedCharList.isEmpty()){
char currChar = sortedCharList.get(index);
if (currChar != charList.get(matchedIndex)){
HashMap<Character, Integer> mapFreq = generateFreq(sortedCharList);
if (mapFreq.get(currChar) > 1){
mapFreq.put(currChar, mapFreq.get(currChar)-1);
}
long denom = 1;
for (char c : mapFreq.keySet()){
denom *= fact(mapFreq.get(c));
}
long factVal = fact(factNum); // prob: factVal overflows
rank += factVal/denom;
while (index < sortedCharList.size()){
if (sortedCharList.get(index) != currChar)break;
index++;
}
}
else {
sortedCharList.remove(index);
index = 0;
factNum--;
matchedIndex++;
}
}
return (int) rank %1000003;
}
}
【问题讨论】: