LeetCode 0552. Student Attendance Record II Solution in Java, C++, Python & Go | Explanation + Code

CoderIndeed
0
0552. Student Attendance Record II

Description

An attendance record for a student can be represented as a string where each character signifies whether the student was absent, late, or present on that day. The record only contains the following three characters:

  • 'A': Absent.
  • 'L': Late.
  • 'P': Present.

Any student is eligible for an attendance award if they meet both of the following criteria:

  • The student was absent ('A') for strictly fewer than 2 days total.
  • The student was never late ('L') for 3 or more consecutive days.

Given an integer n, return the number of possible attendance records of length n that make a student eligible for an attendance award. The answer may be very large, so return it modulo 109 + 7.

 

Example 1:

Input: n = 2
Output: 8
Explanation: There are 8 records with length 2 that are eligible for an award:
"PP", "AP", "PA", "LP", "PL", "AL", "LA", "LL"
Only "AA" is not eligible because there are 2 absences (there need to be fewer than 2).

Example 2:

Input: n = 1
Output: 3

Example 3:

Input: n = 10101
Output: 183236316

 

Constraints:

  • 1 <= n <= 105

Solutions

Solution 1

PythonJavaC++Go
class Solution: def checkRecord(self, n: int) -> int: @cache def dfs(i, j, k): if i >= n: return 1 ans = 0 if j == 0: ans += dfs(i + 1, j + 1, 0) if k < 2: ans += dfs(i + 1, j, k + 1) ans += dfs(i + 1, j, 0) return ans % mod mod = 10**9 + 7 ans = dfs(0, 0, 0) dfs.cache_clear() return ans(code-box)

Solution 2

PythonJavaC++Go
class Solution: def checkRecord(self, n: int) -> int: mod = int(1e9 + 7) dp = [[[0, 0, 0], [0, 0, 0]] for _ in range(n)] # base case dp[0][0][0] = dp[0][0][1] = dp[0][1][0] = 1 for i in range(1, n): # A dp[i][1][0] = (dp[i - 1][0][0] + dp[i - 1][0][1] + dp[i - 1][0][2]) % mod # L dp[i][0][1] = dp[i - 1][0][0] dp[i][0][2] = dp[i - 1][0][1] dp[i][1][1] = dp[i - 1][1][0] dp[i][1][2] = dp[i - 1][1][1] # P dp[i][0][0] = (dp[i - 1][0][0] + dp[i - 1][0][1] + dp[i - 1][0][2]) % mod dp[i][1][0] = ( dp[i][1][0] + dp[i - 1][1][0] + dp[i - 1][1][1] + dp[i - 1][1][2] ) % mod ans = 0 for j in range(2): for k in range(3): ans = (ans + dp[n - 1][j][k]) % mod return ans(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 !