c语言sscanf函数的用法是什么
239
2022-09-17
552. Student Attendance Record II
Given a positive integer n, return the number of all possible attendance records with length n, which will be regarded as rewardable. The answer may be very large, return it after mod 109 + 7.
A student attendance record is a string that only contains the following three characters:
‘A’ : Absent. ‘L’ : Late. ‘P’ : Present. A record is regarded as rewardable if it doesn’t contain more than one ‘A’ (absent) or more than two continuous ‘L’ (late).
Example 1:
Input: n = 2Output: 8 Explanation:There are 8 records with length 2 will be regarded as rewardable:"PP" , "AP", "PA", "LP", "PL", "AL", "LA", "LL"Only "AA" won't be regarded as rewardable owing to more than one absent times.
Note: The value of n won’t exceed 100,000.
思路: 动态规划(Dynamic Programming)
利用dp[n][A][L]表示长度为n,包含A个字符'A',以L个连续的'L'结尾的字符串的个数。
状态转移方程:
dp[n][0][0] = sum(dp[n - 1][0])dp[n][0][1] = dp[n - 1][0][0]dp[n][0][2] = dp[n - 1][0][1]dp[n][1][0] = sum(dp[n - 1][0]) + sum(dp[n - 1][1])dp[n][1][1] = dp[n - 1][1][0]dp[n][1][2] = dp[n - 1][1][1]
初始令dp[1] = [[1, 1, 0], [1, 0, 0]] 由于dp[n]只和dp[n - 1]有关,因此上述转移方程可以使用滚动数组,将空间复杂度降低一维。
class Solution private final int MOD = 1000000007; public long sum(int[] nums) { long ans = 0; for (int n : nums) ans += n; return ans % MOD; } public int checkRecord(int n) { int dp[][] = {{1, 1, 0}, {1, 0, 0}}; for (int i = 2; i <= n; i++) { int ndp[][] = {{0, 0, 0}, {0, 0, 0}}; ndp[0][0] = (int)sum(dp[0]); ndp[0][1] = dp[0][0]; ndp[0][2] = dp[0][1]; ndp[1][0] = (int)((sum(dp[0]) + sum(dp[1])) % MOD); ndp[1][1] = dp[1][0]; ndp[1][2] = dp[1][1]; dp = ndp; } return (int)((sum(dp[0]) + sum(dp[1])) % MOD); }}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~