forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_1349.java
82 lines (80 loc) · 3.17 KB
/
_1349.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
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
package com.fishercoder.solutions;
import java.util.Arrays;
/**
* 1349. Maximum Students Taking Exam
*
* Given a m * n matrix seats that represent seats distributions in a classroom.
* If a seat is broken, it is denoted by '#' character otherwise it is denoted by a '.' character.
* Students can see the answers of those sitting next to the left, right, upper left and upper right, but he cannot see the answers of the student sitting directly in front or behind him. Return the maximum number of students that can take the exam together without any cheating being possible..
* Students must be placed in seats in good condition.
*
* Example 1:
* Input: seats = [["#",".","#","#",".","#"],
* [".","#","#","#","#","."],
* ["#",".","#","#",".","#"]]
* Output: 4
* Explanation: Teacher can place 4 students in available seats so they don't cheat on the exam.
*
* Example 2:
* Input: seats = [[".","#"],
* ["#","#"],
* ["#","."],
* ["#","#"],
* [".","#"]]
* Output: 3
* Explanation: Place all students in available seats.
*
* Example 3:
* Input: seats = [["#",".",".",".","#"],
* [".","#",".","#","."],
* [".",".","#",".","."],
* [".","#",".","#","."],
* ["#",".",".",".","#"]]
* Output: 10
* Explanation: Place students in available seats in column 1, 3 and 5.
*
* Constraints:
* seats contains only characters '.' and'#'.
* m == seats.length
* n == seats[i].length
* 1 <= m <= 8
* 1 <= n <= 8
* */
public class _1349 {
public static class Solution1 {
/**credit: https://leetcode.com/problems/maximum-students-taking-exam/discuss/503686/A-simple-tutorial-on-this-bitmasking-problem*/
public int maxStudents(char[][] seats) {
int m = seats.length;
int n = seats[0].length;
int[] validRows = new int[m];
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
validRows[i] = (validRows[i] << 1) + (seats[i][j] == '.' ? 1 : 0);
}
}
int stateSize = 1 << n; // There are 2^n states for n columns in binary format
int[][] dp = new int[m][stateSize];
for (int i = 0; i < m; i++) {
Arrays.fill(dp[i], -1);
}
int ans = 0;
for (int i = 0; i < m; i++) {
for (int j = 0; j < stateSize; j++) {
if (((j & validRows[i]) == j) && ((j & (j << 1)) == 0)) {
if (i == 0) {
dp[i][j] = Integer.bitCount(j);
} else {
for (int k = 0; k < stateSize; k++) {
if (((k << 1) & j) == 0 && ((j << 1) & k) == 0 && dp[i - 1][k] != -1) {
dp[i][j] = Math.max(dp[i][j], dp[i - 1][k] + Integer.bitCount(j));
}
}
}
ans = Math.max(ans, dp[i][j]);
}
}
}
return ans;
}
}
}