Problem Description
Given a positive integer k, you need to find the length of the smallest positive integer n such that n is divisible by k, and n only contains the digit 1. Return the length of n. If there is no such n, return -1.
Key Insights
- The integer n can be represented as a series of the digit '1' (e.g., 1, 11, 111, etc.).
- A number composed only of the digit '1' can be expressed in the form of (10^length - 1)/9 for a given length.
- The problem can be solved using modular arithmetic to avoid large number computations.
- To find n, we can use a breadth-first search (BFS) approach to explore numbers formed by adding '1' to the previous numbers until we find one that is divisible by k.
Space and Time Complexity
Time Complexity: O(k) - In the worst case, we may need to check up to k different remainders. Space Complexity: O(k) - We may store up to k different states in a queue for BFS.
Solution
To solve the problem, we employ a breadth-first search (BFS) approach, where we generate numbers made up of the digit '1' and check their divisibility by k. We utilize a queue to keep track of the current number in string form and its corresponding length. We also use a set to keep track of the remainders we have already seen to avoid cycles.