An old king wants to divide his kingdom between his two sons. He is well known for his justness and wisdom, and he plans to make a good use of both of these attributes while dividing his kingdom.
The kingdom is administratively split into square boroughs that form an N × M grid. Some of the boroughs contain gold mines. The king knows that his sons do not care as much about the land as they do about gold, so he wants both parts of the kingdom to contain exactly the same number of mines. Moreover, he wants to split the kingdom with either a horizontal or a vertical line that goes along the borders of the boroughs (splitting no borough into two parts).
The goal is to count how many ways he can split the kingdom.
Write a function:
class Solution { public int solution(int N, int M, int[] X, int[] Y); }
that, given two arrays of K integers X and Y, denoting coordinates of boroughs containing the gold mines, will compute the number of fair divisions of the kingdom.
For example, given N = 5, M = 5, X = [0, 4, 2, 0] and Y = [0, 0, 1, 4], the function should return 3. The king can divide his land in three different ways shown on the picture below.

Write an efficient algorithm for the following assumptions:
- N and M are integers within the range [1..100,000];
- K is an integer within the range [1..100,000];
- each element of array X is an integer within the range [0..N-1];
- each element of array Y is an integer within the range [0..M-1].
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
private int[] xList;
private int[] yList;
private int half = 0;
public int solution(int N, int M, int[] X, int[] Y) {
// not too sure with odd number cases
if (X.length % 2 != 0)
System.out.println("not an even number");
// setup
this.half = X.length / 2;
if (half == 0)
return 0;
int ways = 0;
xList = count(xList, X, N);
yList = count(yList, Y, M);
// I could break the loop if more than half in one area, but no need in terms of big O
for (int x = 1; x < N; x++) {
if (xAreaContainsHalf(x))
ways++;
}
for (int y = 1; y < M; y++) {
if (yAreaContainsHalf(y))
ways++;
}
return ways;
}
private boolean xAreaContainsHalf(int x) {
return xList[x - 1] == half;
}
private boolean yAreaContainsHalf(int y) {
return yList[y - 1] == half;
}
private int[] count(int[] list, int[] nums, int max) {
list = new int[max];
for (int i = 0; i < nums.length; i++) {
list[nums[i]]++;
}
int acc = 0;
for (int i = 0; i < list.length; i++) {
list[i] += acc;
acc = list[i];
}
return list;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
private int[] xList;
private int[] yList;
private int half = 0;
public int solution(int N, int M, int[] X, int[] Y) {
// not too sure with odd number cases
if (X.length % 2 != 0)
return 0;
// setup
this.half = X.length / 2;
if (half == 0)
return 0;
int ways = 0;
xList = count(xList, X, N);
yList = count(yList, Y, M);
// I could break the loop if more than half in one area, but no need in terms of big O
for (int x = 1; x < N; x++) {
if (xAreaContainsHalf(x))
ways++;
}
for (int y = 1; y < M; y++) {
if (yAreaContainsHalf(y))
ways++;
}
return ways;
}
private boolean xAreaContainsHalf(int x) {
return xList[x - 1] == half;
}
private boolean yAreaContainsHalf(int y) {
return yList[y - 1] == half;
}
private int[] count(int[] list, int[] nums, int max) {
list = new int[max];
for (int i = 0; i < nums.length; i++) {
list[nums[i]]++;
}
int acc = 0;
for (int i = 0; i < list.length; i++) {
list[i] += acc;
acc = list[i];
}
return list;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
private int[] xList;
private int[] yList;
private int half = 0;
public int solution(int N, int M, int[] X, int[] Y) {
// not too sure with odd number cases
if (X.length % 2 != 0)
return 0;
// setup
this.half = X.length / 2;
int ways = 0;
xList = count(xList, X, N);
yList = count(yList, Y, M);
// I could break the loop if more than half in one area, but no need in terms of big O
for (int x = 1; x < N; x++) {
if (xAreaContainsHalf(x))
ways++;
}
for (int y = 1; y < M; y++) {
if (yAreaContainsHalf(y))
ways++;
}
return ways;
}
private boolean xAreaContainsHalf(int x) {
return xList[x - 1] == half;
}
private boolean yAreaContainsHalf(int y) {
return yList[y - 1] == half;
}
private int[] count(int[] list, int[] nums, int max) {
list = new int[max];
for (int i = 0; i < nums.length; i++) {
list[nums[i]]++;
}
int acc = 0;
for (int i = 0; i < list.length; i++) {
list[i] += acc;
acc = list[i];
}
return list;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
private int[] xList;
private int[] yList;
private int half = 0;
public int solution(int N, int M, int[] X, int[] Y) {
// not too sure with odd number cases
if (X.length % 2 != 0)
return 0;
// setup
this.half = X.length / 2;
int ways = 0;
xList = count(xList, X, N);
yList = count(yList, Y, M);
// I could break the loop if more than half in one area, but no need in terms of big O
for (int x = 1; x < N; x++) {
if (xAreaContainsHalf(x))
ways++;
}
for (int y = 1; y < M; y++) {
if (yAreaContainsHalf(y))
ways++;
}
return ways;
}
private boolean xAreaContainsHalf(int x) {
return xList[x - 1] == half;
}
private boolean yAreaContainsHalf(int y) {
return yList[y - 1] == half;
}
private int[] count(int[] list, int[] nums, int max) {
list = new int[max];
for (int i = 0; i < nums.length; i++) {
list[nums[i]]++;
}
int acc = 0;
for (int i = 0; i < list.length; i++) {
list[i] += acc;
acc = list[i];
}
return list;
}
}
The solution obtained perfect score.