forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
smallest-integer-divisible-by-k.cpp
35 lines (34 loc) · 1.2 KB
/
smallest-integer-divisible-by-k.cpp
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
// Time: O(k)
// Space: O(1)
class Solution {
public:
int smallestRepunitDivByK(int K) {
// by observation, K % 2 = 0 or K % 5 = 0, it is impossible
if (K % 2 == 0 || K % 5 == 0) {
return -1;
}
// let f(N) is a N-length integer only containing digit 1
// given K % 2 != 0 and K % 5 != 0
// if there is no N in range (1..K) s.t. f(N) % K = 0
// => there must be K remainders of f(N) % K in range (1..K-1) excluding 0
// => due to pigeonhole principle, there must be at least 2 same remainders
// => there must be some x, y in range (1..K) and x > y s.t. f(x) % K = f(y) % K
// => (f(x) - f(y)) % K = 0
// => (f(x-y) * 10^y) % K = 0
// => due to (x-y) in range (1..K)
// => f(x-y) % K != 0
// => 10^y % K = 0
// => K % 2 = 0 or K % 5 = 0
// => -><-
// it proves that there must be some N in range (1..K) s.t. f(N) % K = 0
int result = 0;
for (int N = 1; N <= K; ++N) {
result = (result * 10 + 1) % K;
if (!result) {
return N;
}
}
assert(false);
return -1; // never reach
}
};