nico和niconiconi 难度:3星 计 dp[i]dp[i]dp[i] 代表前 iii 个字符的计数最大值。 那么可得转移方程: 若取当前子串"nico": if(substring(i−3,i)==nico)thenif(substring(i-3,i)==nico)thenif(substring(i−3,i)==nico)then dp[i]=max(dp[i],dp[i−4]+a)dp[i]=max(dp[i],dp[i-4]+a)dp[i]=max(dp[i],dp[i−4]+a) 若取当前子串"niconi": if(substring(i−5,i)==niconi)the...