-
Notifications
You must be signed in to change notification settings - Fork 225
/
1066-campus-bikes-ii.js
141 lines (123 loc) · 2.98 KB
/
1066-campus-bikes-ii.js
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/**
* @param {number[][]} workers
* @param {number[][]} bikes
* @return {number}
*/
const assignBikes = function(workers, bikes) {
const { abs, min } = Math
const n = workers.length, m = bikes.length
const limit = 1 << m
const dp = Array(limit).fill(Infinity)
dp[0] = 0
let res = Infinity
for(let mask = 1; mask < limit; mask++) {
if(bitCnt(mask) > n) continue
for(let i = 0; i < m; i++) {
if((mask >> i) & 1) {
dp[mask] = min(
dp[mask],
dp[mask ^ (1 << i)] + distance(bitCnt(mask) - 1, i)
)
}
}
if(bitCnt(mask) === n) {
res = min(res, dp[mask])
}
}
return res
function bitCnt(num) {
let res = 0
while(num) {
num = num & (num - 1)
res++
}
return res
}
// worker, bike
function distance(i, j) {
return abs(workers[i][0] - bikes[j][0]) + abs(workers[i][1] - bikes[j][1])
}
};
// another
/**
* @param {number[][]} workers
* @param {number[][]} bikes
* @return {number}
*/
const assignBikes = function(workers, bikes) {
const n = workers.length, m = bikes.length
let res = Infinity
dfs(0, 0, 0)
return res
function dfs(i, mask, cur) {
if(i === n) {
res = Math.min(res, cur)
return
}
for(let j = 0; j < m; j++) {
if((mask & (1 << j)) === 0) {
dfs(i + 1, mask | (1 << j), cur + calc(i, j))
}
}
}
function calc(i, j) {
const a = workers[i], b = bikes[j]
return Math.abs(a[0] - b[0]) + Math.abs(a[1] - b[1])
}
};
// another
/**
* @param {number[][]} workers
* @param {number[][]} bikes
* @return {number}
*/
const assignBikes = function(workers, bikes) {
const n = workers.length, m = bikes.length
const dp = Array(1 << m).fill(Infinity)
return dfs(0, 0)
function dfs(i, mask) {
if(i >= workers.length) return 0
if(dp[mask] !== Infinity) return dp[mask]
for(let j = 0; j < bikes.length; j++) {
if((mask & (1 << j)) === 0) {
dp[mask] = Math.min(dp[mask], dist(i, j) + dfs(i + 1, mask + (1 << j)))
}
}
return dp[mask]
}
function dist(j, i) {
return Math.abs(bikes[i][0] - workers[j][0]) + Math.abs(bikes[i][1] - workers[j][1])
}
};
// another
/**
* @param {number[][]} workers
* @param {number[][]} bikes
* @return {number}
*/
const assignBikes = function (workers, bikes) {
const n = workers.length
const m = bikes.length
const dp = Array.from({ length: n + 1 }, () =>
Array(1 << m).fill(Number.MAX_VALUE / 2)
)
dp[0][0] = 0
let min = Number.MAX_VALUE
for (let i = 1; i <= n; i++) {
for (let s = 1; s < 1 << m; s++) {
for (let j = 0; j < m; j++) {
if ((s & (1 << j)) === 0) continue
let prev = s ^ (1 << j)
dp[i][s] = Math.min(
dp[i - 1][prev] + dis(workers[i - 1], bikes[j]),
dp[i][s]
)
if (i === n) min = Math.min(min, dp[i][s])
}
}
}
return min
}
function dis(p1, p2) {
return Math.abs(p1[0] - p2[0]) + Math.abs(p1[1] - p2[1])
}