forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_483.java
42 lines (36 loc) · 1.26 KB
/
_483.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
package com.fishercoder.solutions;
import java.math.BigInteger;
public class _483 {
public static class Solution1 {
/**
* credit: https://discuss.leetcode.com/topic/82130/java-solution-with-hand-writing-explain
*/
public String smallestGoodBase(String n) {
long nn = Long.parseLong(n);
long res = 0;
for (int k = 60; k >= 2; k--) {
long start = 2;
long end = nn;
while (start < end) {
long m = start + (end - start) / 2;
BigInteger left = BigInteger.valueOf(m);
left = left.pow(k).subtract(BigInteger.ONE);
BigInteger right = BigInteger.valueOf(nn).multiply(BigInteger.valueOf(m).subtract(BigInteger.ONE));
int cmr = left.compareTo(right);
if (cmr == 0) {
res = m;
break;
} else if (cmr < 0) {
start = m + 1;
} else {
end = m;
}
}
if (res != 0) {
break;
}
}
return "" + res;
}
}
}