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.

69 lines
2.1 KiB

2 years ago
package class36;
import java.util.HashMap;
// 来自京东
// 把一个01字符串切成多个部分要求每一部分的0和1比例一样同时要求尽可能多的划分
// 比如 : 01010101
// 01 01 01 01 这是一种切法0和1比例为 1 : 1
// 0101 0101 也是一种切法0和1比例为 1 : 1
// 两种切法都符合要求但是那么尽可能多的划分为第一种切法部分数为4
// 比如 : 00001111
// 只有一种切法就是00001111整体作为一块那么尽可能多的划分部分数为1
// 给定一个01字符串str假设长度为N要求返回一个长度为N的数组ans
// 其中ans[i] = str[0...i]这个前缀串要求每一部分的0和1比例一样同时要求尽可能多的划分下部分数是多少
// 输入: str = "010100001"
// 输出: ans = [1, 1, 1, 2, 1, 2, 1, 1, 3]
public class Code02_Ratio01Split {
// 001010010100...
public static int[] split(int[] arr) {
// key : 分子
// value : 属于key的分母表, 每一个分母,及其 分子/分母 这个比例,多少个前缀拥有
HashMap<Integer, HashMap<Integer, Integer>> pre = new HashMap<>();
int n = arr.length;
int[] ans = new int[n];
int zero = 0; // 0出现的次数
int one = 0; // 1出现的次数
for (int i = 0; i < n; i++) {
if (arr[i] == 0) {
zero++;
} else {
one++;
}
if (zero == 0 || one == 0) {
ans[i] = i + 1;
} else { // 0和1都有数量 -> 最简分数
int gcd = gcd(zero, one);
int a = zero / gcd;
int b = one / gcd;
// a / b 比例,之前有多少前缀拥有? 3+1 4 5+1 6
if (!pre.containsKey(a)) {
pre.put(a, new HashMap<>());
}
if (!pre.get(a).containsKey(b)) {
pre.get(a).put(b, 1);
} else {
pre.get(a).put(b, pre.get(a).get(b) + 1);
}
ans[i] = pre.get(a).get(b);
}
}
return ans;
}
public static int gcd(int m, int n) {
return n == 0 ? m : gcd(n, m % n);
}
public static void main(String[] args) {
int[] arr = { 0, 1, 0, 1, 0, 1, 1, 0 };
int[] ans = split(arr);
for (int i = 0; i < ans.length; i++) {
System.out.print(ans[i] + " ");
}
}
}