-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMajorityElement.java
More file actions
94 lines (79 loc) · 2.61 KB
/
MajorityElement.java
File metadata and controls
94 lines (79 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import java.util.*;
import java.io.*;
public class MajorityElement {
private static int getMajorityElement(int[] a, int left, int right) {
if (left > right) {
return -1;
}
if (left == right) {
return a[left];
}
int middle = left + (right - left) / 2;
int leftElement = getMajorityElement(a, left, middle);
int rightElement = getMajorityElement(a, middle + 1, right);
if (leftElement == -1 && rightElement != -1) {
int num = count(a, left, right, rightElement);
if (num > (right - left + 1) / 2)
return rightElement;
} else if (rightElement == -1 && leftElement != -1) {
int num = count(a, left, right, leftElement);
if (num > (right - left + 1) / 2) {
return leftElement;
}
} else if (leftElement != -1 && rightElement != -1) {
int leftNum = count(a, left, right, leftElement);
int rightNum = count(a, left, right, rightElement);
if (leftNum > (right - left + 1) / 2) {
return leftElement;
} else if (rightNum > (right - left + 1) / 2) {
return rightElement;
}
}
return -1;
}
private static int count(int[] a, int left, int right, int x) {
int count = 0;
for (int i = left; i <= right; i++) {
if (a[i] == x)
count++;
}
return count;
}
public static void main(String[] args) {
FastScanner scanner = new FastScanner(System.in);
int n = scanner.nextInt();
int[] a = new int[n];
for (int i = 0; i < n; i++) {
a[i] = scanner.nextInt();
}
if (getMajorityElement(a, 0, a.length - 1) != -1) {
System.out.println(1);
} else {
System.out.println(0);
}
}
static class FastScanner {
BufferedReader br;
StringTokenizer st;
FastScanner(InputStream stream) {
try {
br = new BufferedReader(new InputStreamReader(stream));
} catch (Exception e) {
e.printStackTrace();
}
}
String next() {
while (st == null || !st.hasMoreTokens()) {
try {
st = new StringTokenizer(br.readLine());
} catch (IOException e) {
e.printStackTrace();
}
}
return st.nextToken();
}
int nextInt() {
return Integer.parseInt(next());
}
}
}