LeetCode 0465. Optimal Account Balancing Solution in Java, Python, C++, JavaScript, Go & Rust | Explanation + Code

CoderIndeed
0
0465. Optimal Account Balancing

Description

You are given an array of transactions transactions where transactions[i] = [fromi, toi, amounti] indicates that the person with ID = fromi gave amounti $ to the person with ID = toi.

Return the minimum number of transactions required to settle the debt.

 

Example 1:

Input: transactions = [[0,1,10],[2,0,5]]
Output: 2
Explanation:
Person #0 gave person #1 $10.
Person #2 gave person #0 $5.
Two transactions are needed. One way to settle the debt is person #1 pays person #0 and #2 $5 each.

Example 2:

Input: transactions = [[0,1,10],[1,0,1],[1,2,5],[2,0,5]]
Output: 1
Explanation:
Person #0 gave person #1 $10.
Person #1 gave person #0 $1.
Person #1 gave person #2 $5.
Person #2 gave person #0 $5.
Therefore, person #1 only need to give person #0 $4, and all debt is settled.

 

Constraints:

  • 1 <= transactions.length <= 8
  • transactions[i].length == 3
  • 0 <= fromi, toi < 12
  • fromi != toi
  • 1 <= amounti <= 100

Solutions

Solution 1

PythonJavaC++GoTypeScript
class Solution: def minTransfers(self, transactions: List[List[int]]) -> int: g = defaultdict(int) for f, t, x in transactions: g[f] -= x g[t] += x nums = [x for x in g.values() if x] m = len(nums) f = [inf] * (1 << m) f[0] = 0 for i in range(1, 1 << m): s = 0 for j, x in enumerate(nums): if i >> j & 1: s += x if s == 0: f[i] = i.bit_count() - 1 j = (i - 1) & i while j > 0: f[i] = min(f[i], f[j] + f[i ^ j]) j = (j - 1) & i return f[-1](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 !