-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.java
35 lines (33 loc) · 894 Bytes
/
Solution.java
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
class Solution {
private int[][] g;
private boolean[] vis;
private int m;
private int ans;
public int maxCompatibilitySum(int[][] students, int[][] mentors) {
m = students.length;
g = new int[m][m];
vis = new boolean[m];
for (int i = 0; i < m; ++i) {
for (int j = 0; j < m; ++j) {
for (int k = 0; k < students[i].length; ++k) {
g[i][j] += students[i][k] == mentors[j][k] ? 1 : 0;
}
}
}
dfs(0, 0);
return ans;
}
private void dfs(int i, int t) {
if (i == m) {
ans = Math.max(ans, t);
return;
}
for (int j = 0; j < m; ++j) {
if (!vis[j]) {
vis[j] = true;
dfs(i + 1, t + g[i][j]);
vis[j] = false;
}
}
}
}