题目: possible sentences 题目描述:Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word. Return all such possible sentences. 输
1) I am writing to confirm /enquire/inform you… 我写信时要确认 / 询问 / 通知你… 2) I am writing to follow up on our earlier decision on the marketing campaign in Q2. 我写信来追踪我们之前对于第二季度营销活动的决定。 3) With ref
传送门 思路: 题意:给一个字符串 S ,求与其相似的本质不同的字符串 T 的个数。相似的定义有: 单词的可重集合相同。对于一个词 α ,它在 S 中的第 i 次出现和在 T 中的第 i 次出现的下标相差不超过1。 官方题解: 根据题解,不难找到如下规律: 如果S[i] == S[i-1],就有dp[i] = dp[i-1].否则就有dp[i] = dp[i-1] + dp[i-