Minimum Number of Coins to be Added — LeetCode 2952 Python Solution
- Problem
- #2952
- Pattern
- Greedy
- Reading time
- 3 min
- Source
- leetcode.com
The problem
You are given a 0-indexed integer array coins, representing the values of the coins available, and an integer target. An integer x is obtainable if there exists a subsequence of coins that sums to x.
Example
- Input
- coins = [1,4,10], target = 19
- Output
- 2
- Explanation
- We need to add coins 2 and 8. The resulting array will be [1,2,4,8,10].
Python solution
class Solution:
def minimumAddedCoins(self, coins: List[int], target: int) -> int:
coins.sort()
s = 1
ans = i = 0
while s <= target:
if i < len(coins) and coins[i] <= s:
s += coins[i]
i += 1
else:
s <<= 1
ans += 1
return ansComplexity
| Measure | Complexity |
|---|---|
| Time | O(n \times \log n) |
| Space | O(\log n) auxiliary |
Pattern: Greedy
Take the locally best option every time — when you can prove that never costs you later. LeetCode 2952. Minimum Number of Coins to be Added is filed here on both counts: the reference solution below belongs to the algorithm family this hub collects, and LeetCode tags it Greedy.
The greedy guide has the Python template for the pattern and the 346 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 2952. Minimum Number of Coins to be Added?
- LeetCode 2952. Minimum Number of Coins to be Added is rated Medium on LeetCode.
- What is the time complexity of LeetCode 2952. Minimum Number of Coins to be Added?
- The Python solution on this page runs in O(n \times \log n).
- What is the space complexity of LeetCode 2952. Minimum Number of Coins to be Added?
- The Python solution on this page uses O(\log n) auxiliary space.
- What topics does LeetCode 2952. Minimum Number of Coins to be Added cover?
- LeetCode 2952. Minimum Number of Coins to be Added is tagged Greedy, Array and Sorting on LeetCode.