-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_0465_minTransfers.cc
91 lines (86 loc) · 1.86 KB
/
Problem_0465_minTransfers.cc
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include <vector>
using namespace std;
// 状压dp
// TODO: figure it out.
// @sa https://www.bilibili.com/video/BV1Tu4y1g7GU/
class Solution
{
private:
static constexpr int MAXN = 13;
vector<int> getDebts(vector<vector<int>>& transactions)
{
vector<int> help(MAXN);
for (auto& t : transactions)
{
help[t[0]] -= t[2];
help[t[1]] += t[2];
}
int n = 0;
for (int num : help)
{
if (num != 0)
{
n++;
}
}
vector<int> debt(n);
int index = 0;
for (int num : help)
{
if (num != 0)
{
debt[index++] = num;
}
}
return debt;
}
int f(vector<int>& debt, int set, int sum, int n, vector<int>& dp)
{
if (dp[set] != -1)
{
return dp[set];
}
int ans = 0;
// 集合中不只一个元素
if ((set & set - 1) != 0)
{
if (sum == 0)
{
for (int i = 0; i < n; i++)
{
if ((set & (1 << i)) != 0)
{
// 找到任何一个元素,去除这个元素
// 剩下的集合进行尝试,返回值 + 1
ans = f(debt, set ^ (1 << i), sum - debt[i], n, dp) + 1;
// 然后不需要再尝试下一个元素了,因为答案一定是一样的
// 所以直接break
break;
}
}
}
}
else
{
// 累加和不是 0
for (int i = 0; i < n; i++)
{
if ((set & (1 << i)) != 0)
{
ans = std::max(ans, f(debt, set ^ (1 << i), sum - debt[i], n, dp));
}
}
}
dp[set] = ans;
return ans;
}
public:
int minTransfers(vector<vector<int>>& transactions)
{
// 加工出来的debt数组中一定不含有0
vector<int> debt = getDebts(transactions);
int n = debt.size();
vector<int> dp(1 << n, -1);
return n - f(debt, (1 << n) - 1, 0, n, dp);
}
};