LeetCode 0668. Kth Smallest Number in Multiplication Table Solution in Java, Python, C++, JavaScript, Go & Rust | Explanation + Code

CoderIndeed
0
0668. Kth Smallest Number in Multiplication Table

Description

Nearly everyone has used the Multiplication Table. The multiplication table of size m x n is an integer matrix mat where mat[i][j] == i * j (1-indexed).

Given three integers m, n, and k, return the kth smallest element in the m x n multiplication table.

 

Example 1:

Input: m = 3, n = 3, k = 5
Output: 3
Explanation: The 5th smallest number is 3.

Example 2:

Input: m = 2, n = 3, k = 6
Output: 6
Explanation: The 6th smallest number is 6.

 

Constraints:

  • 1 <= m, n <= 3 * 104
  • 1 <= k <= m * n

Solutions

Solution 1

PythonJavaC++Go
class Solution: def findKthNumber(self, m: int, n: int, k: int) -> int: left, right = 1, m * n while left < right: mid = (left + right) >> 1 cnt = 0 for i in range(1, m + 1): cnt += min(mid // i, n) if cnt >= k: right = mid else: left = mid + 1 return left(code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !