-
Notifications
You must be signed in to change notification settings - Fork 0
/
MajorityElement.java
77 lines (68 loc) · 2.02 KB
/
MajorityElement.java
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
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 + 1 == right) {
return a[left];
}
int middle = (left + right) / 2;
int major = getMajorityElement(a, left, middle);
if (2 * countElement(a, left, right, major) > right - left) {
return major;
}
major = getMajorityElement(a, middle, right);
if (2 * countElement(a, left, right, major) > right - left) {
return major;
}
return -1;
}
static int countElement(int[] a, int left, int right, int element) {
int count = 0;
for (int i = left; i < right; i++) {
if (a[i] == element) {
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) {
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());
}
}
}