You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.2 KiB

package 01.mca_test;
import java.util.HashMap;
// 本题测试链接 : https://leetcode.com/problems/distinct-subsequences-ii/
public class Code05_DistinctSubseqValue {
public static int distinctSubseqII(String s) {
if (s == null || s.length() == 0) {
return 0;
}
int m = 1000000007;
char[] str = s.toCharArray();
int[] count = new int[26];
int all = 1; // 算空集
for (char x : str) {
int add = (all - count[x - 'a'] + m) % m;
all = (all + add) % m;
count[x - 'a'] = (count[x - 'a'] + add) % m;
}
return all - 1;
}
public static int zuo(String s) {
if (s == null || s.length() == 0) {
return 0;
}
int m = 1000000007;
char[] str = s.toCharArray();
HashMap<Character, Integer> map = new HashMap<>();
int all = 1; // 一个字符也没遍历的时候,有空集
for (char x : str) {
int newAdd = all;
// int curAll = all + newAdd - (map.containsKey(x) ? map.get(x) : 0);
int curAll = all;
curAll = (curAll + newAdd) % m;
curAll = (curAll - (map.containsKey(x) ? map.get(x) : 0) + m) % m;
all = curAll;
map.put(x, newAdd);
}
return all;
}
public static void main(String[] args) {
String s = "bccaccbaabbc";
System.out.println(distinctSubseqII(s) + 1);
System.out.println(zuo(s));
}
}